blob: e5e2c15e5ade0dc204433889d381952a87e13378 [file] [log] [blame]
open class Foo {
open func doSomething(_ f: Foo) {}
}
@inlinable public func callFoo(f: Foo) {
f.doSomething(f)
}