// "Create member function 'Foo.foo'" "true" // ERROR: Unresolved reference: foo expect class Foo { fun foo(s: String, i: Int) } fun test(f: Foo) { f.foo("a", 1) }