blob: b5fe26d83a9c7f1c71e6d3bb483cb4fa3d99e402 [file] [log] [blame]
// RUN: %target-swift-frontend -emit-ir %s -disable-objc-attr-requires-foundation-module
// REQUIRES: objc_interop
@objc protocol TestProtocol {
func foo(i: Int)
}
class Test : TestProtocol {
@objc func foo(i: Int) {
}
}
func bar(t: TestProtocol?) {
let foofunc = t?.foo
foofunc?(5)
}