8 lines
92 B
Plaintext
8 lines
92 B
Plaintext
fun a(op: (Int) -> Int) {}
|
|
fun b() {
|
|
a {it}
|
|
a {
|
|
val i = it
|
|
i
|
|
}
|
|
} |