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