Files
swift-mirror/validation-test/Evolution/Inputs/global_stored_to_computed.swift

19 lines
211 B
Swift

#if BEFORE
public var globalStoredToComputed: Int = 0
#else
var _realValue: Int = 0
public var globalStoredToComputed: Int {
get {
return _realValue
}
set {
_realValue = newValue
}
}
#endif