Spot the bug in the Incrementable protocol

from Protocols
Swift 6.3.3 beginner 4 min 1 issue to find

Find why the structure cannot satisfy and implement this state-changing protocol method.

swift
protocol Incrementable {
    var count: Int { get }
    func increment()
}

struct Counter: Incrementable {
    private(set) var count = 0
    func increment() {
        count += 1
    }
}
Open in playground
Report an error