9 lines
122 B
Kotlin
Vendored
9 lines
122 B
Kotlin
Vendored
fun foo2(f: (Int) -> Unit) {
|
|
f(1)
|
|
}
|
|
|
|
fun main(args: String) {
|
|
foo2(<caret>fun(i: Int) {
|
|
val p = i
|
|
})
|
|
} |