8a0808b133
#KT-6705 Fixed
9 lines
158 B
Kotlin
9 lines
158 B
Kotlin
// "Create local variable 'foo'" "true"
|
|
// ACTION: Create parameter 'foo'
|
|
|
|
fun test(n: Int) {
|
|
val f: () -> Int = {
|
|
val foo = 0
|
|
foo
|
|
}
|
|
} |