2188af2bf9
#KT-4670 Fixed
13 lines
132 B
Kotlin
13 lines
132 B
Kotlin
fun foo() {
|
|
run {
|
|
val a = 1
|
|
bar(a)
|
|
}
|
|
|
|
run {
|
|
val a = 2
|
|
bar(a)
|
|
}
|
|
|
|
run { bar(3) }
|
|
} |