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