mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
27 lines
270 B
Swift
27 lines
270 B
Swift
|
|
#if BEFORE
|
|
|
|
open class AddVirtualMethod {
|
|
public init() {}
|
|
|
|
open func f1() -> Int {
|
|
return 1
|
|
}
|
|
}
|
|
|
|
#else
|
|
|
|
open class AddVirtualMethod {
|
|
public init() {}
|
|
|
|
open func f1() -> Int {
|
|
return f2() + 1
|
|
}
|
|
|
|
open func f2() -> Int {
|
|
return 0
|
|
}
|
|
}
|
|
|
|
#endif
|