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