Files
kotlin-fork/idea/testData/intentions/replaceWithDotQualifiedMethodCall/functionLiteralArgument.kt.after
T

7 lines
85 B
Plaintext

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