9 lines
162 B
Kotlin
Vendored
9 lines
162 B
Kotlin
Vendored
// IS_APPLICABLE: false
|
|
// ERROR: 'infix' modifier is inapplicable on this function
|
|
package ppp
|
|
|
|
infix fun foo(p: String){}
|
|
|
|
fun main() {
|
|
ppp.<caret>foo("")
|
|
} |