Files
kotlin-fork/idea/testData/intentions/replaceWithInfixFunctionCall/firstParameterLabeled.kt
T

9 lines
113 B
Kotlin

class Foo {
fun foo(x: Int) {
println("lol")
}
}
fun bar(baz: Foo) {
baz.<caret>foo(x = 1)
}