// WITH_RUNTIME // PROBLEM: none class Foo { fun s(a: String) {} fun test() { Bar().apply { this@Foo.s("") } } } class Bar { fun s() {} }