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

9 lines
101 B
Plaintext

class Foo {
fun foo(x: Int) {
println("lol")
}
}
fun bar(baz: Foo) {
baz foo 1
}