Files
Slava Pestov 9536eff2d6 Execution tests for Objective-C resilient class stubs
Fixes <rdar://49090613>, except they're disabled for the time being.
2019-04-19 17:39:51 -04:00

12 lines
202 B
Swift

import Foundation
open class BaseClass : NSObject {
@objc dynamic open func instanceMethod() -> Int {
return 42
}
@objc dynamic open class func classMethod() -> Int {
return 31337
}
}