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