mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 15:54:03 +00:00
8 lines
145 B
Kotlin
Vendored
8 lines
145 B
Kotlin
Vendored
// "Create parameter 'foo'" "true"
|
|
// ACTION: Create local variable 'foo'
|
|
|
|
fun test(n: Int) {
|
|
val f: () -> Int = {
|
|
<caret>foo
|
|
}
|
|
} |