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