找出自增协议里的 bug

来自 协议
Swift 6.3.3 入门 4分钟 找出 1处问题

找出这个结构体为何无法满足并实现协议中的状态修改方法。

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

struct Counter: Incrementable {
    private(set) var count = 0
    func increment() {
        count += 1
    }
}
在试验场中打开
报告错误