8600e7348c
(cherry picked from commit 57eb4c1)
10 lines
101 B
Kotlin
Vendored
10 lines
101 B
Kotlin
Vendored
fun run(f: () -> Unit) = f()
|
|
|
|
fun foo() {
|
|
var a: Int
|
|
a = 10
|
|
|
|
run {
|
|
a = 20
|
|
}
|
|
} |