8 lines
148 B
Plaintext
Vendored
8 lines
148 B
Plaintext
Vendored
// "Create parameter 'foo'" "true"
|
|
// ACTION: Create local variable 'foo'
|
|
|
|
fun test(n: Int, foo: Int) {
|
|
val f: () -> Int = {
|
|
foo
|
|
}
|
|
} |