Files
kotlin-fork/idea/testData/intentions/toInfixCall/namedArgument.kt
T
2015-05-13 16:13:13 +02:00

9 lines
133 B
Kotlin
Vendored

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