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()
struct Counter {
private(set) var value = 0
mutating func increment() {
value += 1
}
}
let requestCount = Counter()
requestCount.increment()