Files
kotlin-fork/idea/testData/intentions/toInfixCall/zeroArguments.kt
T
2017-05-20 23:44:20 +03:00

8 lines
138 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()
}