8 lines
110 B
Plaintext
Vendored
8 lines
110 B
Plaintext
Vendored
fun foo(f: (a: Int, b: Int, c: Int) -> Int) {
|
|
f(1, 2, 3)
|
|
}
|
|
|
|
fun bar(c: Int) {
|
|
foo { _, _, c1 -> c }
|
|
}
|