d61158a176
#KT-30601 Fixed #KT-20570 Fixed
14 lines
186 B
Plaintext
Vendored
14 lines
186 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
data class A(var x: Int)
|
|
|
|
fun convert(f: (A) -> Unit) {}
|
|
|
|
fun test() {
|
|
convert { (x1) ->
|
|
|
|
run {
|
|
val x = 1
|
|
val z = x1
|
|
}
|
|
}
|
|
} |