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

10 lines
131 B
Kotlin

// IS_APPLICABLE: false
class Foo {
fun foo(x: Int = 0, y: Int = 0) {
}
}
fun bar(baz: Foo) {
baz.<caret>foo(y = 1)
}