Spot the bug in the Counter binding

from Structures and classes
Swift 6.3.3 beginner 4 min 1 issue to find

Find why this code does not compile.

swift
struct Counter {
    private(set) var value = 0

    mutating func increment() {
        value += 1
    }
}

let requestCount = Counter()
requestCount.increment()
Open in playground
Report an error