9 lines
133 B
Plaintext
Vendored
9 lines
133 B
Plaintext
Vendored
// "Create local variable 'foo'" "true"
|
|
|
|
fun test(n: Int) {
|
|
val i = 1
|
|
test(i)
|
|
test(i + 1)
|
|
val foo = 0
|
|
test(foo)
|
|
} |