8 lines
95 B
Plaintext
Vendored
8 lines
95 B
Plaintext
Vendored
fun foo(x: Foo) {
|
|
x foo { it * 2 }
|
|
}
|
|
|
|
interface Foo {
|
|
infix fun foo(f: (Int) -> Int)
|
|
}
|