Daily iOS
Swift

mutating and value types

Which line in this code fails to compile, and why?

struct Counter {
    var value = 0
    func increment() { value += 1 }
}
let c = Counter()
c.increment()

Submit