Files
swift-mirror/test/SILGen/Inputs/objc_dynamic_replacement.swift
Arnold Schwaighofer 33b8ea331b Add missing test file
2019-02-22 11:10:33 -08:00

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
}