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

12 lines
147 B
Kotlin

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