mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
19 lines
211 B
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
|