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