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

8 lines
136 B
Kotlin
Vendored

// IS_APPLICABLE: false
// ERROR: No value passed for parameter p
infix fun Int.xxx(p: Int) = 1
fun foo(x: Int) {
x.<caret>xxx()
}