mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
20 lines
276 B
Swift
20 lines
276 B
Swift
import Foundation
|
|
|
|
@objc protocol Proto {
|
|
func implicitObjCMethod()
|
|
}
|
|
|
|
class Object : Proto {
|
|
func implicitObjCMethod() {}
|
|
|
|
@objc dynamic
|
|
func objCMethod() {}
|
|
|
|
@objc dynamic
|
|
var objcProperty : Int {
|
|
return 0
|
|
}
|
|
@objc dynamic
|
|
var objcProperty2 : Int = 0
|
|
}
|