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

12 lines
135 B
Plaintext

fun doSomething<T>(a: T) {}
class Foo {
fun foo(x: Int) {
doSomething("lol")
}
}
fun bar(baz: Foo) {
baz foo 1
}