13 lines
132 B
Kotlin
Vendored
13 lines
132 B
Kotlin
Vendored
fun foo() {
|
|
run {
|
|
val a = 1
|
|
bar(a)
|
|
}
|
|
|
|
run {
|
|
val a = 2
|
|
bar(a)
|
|
}
|
|
|
|
run { bar(3) }
|
|
} |