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