8 lines
94 B
Plaintext
Vendored
8 lines
94 B
Plaintext
Vendored
fun foo(f: (Int, Int, Int) -> Unit) {
|
|
f(1, 2, 3)
|
|
}
|
|
|
|
fun bar() {
|
|
foo { _, i, _ -> }
|
|
}
|