blob: afbf6b65fce859e0bd2a089b4cf6e29a516464c7 [file] [log] [blame]
public func getVersion() -> Int {
#if BEFORE
return 0
#else
return 1
#endif
}
public enum ResilientEnum {
case first
case second
#if AFTER
@_weakLinked case third
#endif
case fourth
case fifth
}