2a390155a9
See 8316953259
9 lines
205 B
Kotlin
Vendored
9 lines
205 B
Kotlin
Vendored
// IS_APPLICABLE: false
|
|
// ERROR: 'infix' modifier is inapplicable on this function: must be a member of an extension function
|
|
package ppp
|
|
|
|
infix fun foo(p: String){}
|
|
|
|
fun main() {
|
|
ppp.<caret>foo("")
|
|
} |