// PROBLEM: none // WITH_RUNTIME fun test() { val c = MyClass() with(c) { println(f()) } } class MyClass { val f: () -> String = { "" } }