blob: f3cef39a8cdd2cde8fc08f4e8dbaf9ee62454428 [file] [log] [blame]
// RUN: %target-swift-frontend %s -emit-ir
// REQUIRES: objc_interop
func f(_: AnyObject?) { }
class C {
private var a: Int
private var b: Int
func test() {
f((self.a, self.b) as AnyObject)
}
init() {
a = 0
b = 0
}
}