Files
kotlin-fork/idea/testData/intentions/toInfixCall/functionLiteralArgument.kt.after
T
Valentin Kipyatkov d1afff1612 Renamed intention
2015-05-02 14:03:25 +03:00

8 lines
85 B
Plaintext

fun foo(x: Foo) {
x foo { it * 2 }
}
trait Foo {
fun foo(f: (Int) -> Int)
}