Files
kotlin-fork/idea/testData/intentions/toInfixCall/secondParameterLabeled.kt
T
Valentin Kipyatkov d1afff1612 Renamed intention
2015-05-02 14:03:25 +03:00

10 lines
131 B
Kotlin
Vendored

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