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

7 lines
92 B
Kotlin

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