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