// "Create member function 'T.foo'" "true" interface T { fun foo(s: String, i: Int): Boolean { TODO("Not yet implemented") } } fun test(t: T) { val b: Boolean = t.foo("1", 2) }