Files
kotlin-fork/idea/testData/intentions/toInfixCall/namedArgument.kt
T

9 lines
139 B
Kotlin
Vendored

// IS_APPLICABLE: false
fun foo(x: Foo) {
x.<caret>foo(bar = x)
}
interface Foo {
infix fun foo(baz: Int = 0, bar: Foo? = null)
}