// WITH_RUNTIME data class A(var x: Int) fun convert(f: (A) -> Unit) {} fun test() { convert { val x = it.x run { val x = 1 val z = it.x } } }