9be219b69c
Also fix typo in "inapplicable infix" diagnostic message
12 lines
250 B
Kotlin
Vendored
12 lines
250 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
// IS_APPLICABLE: false
|
|
// ERROR: 'infix' modifier is inapplicable on this function: must be a member or an extension function
|
|
|
|
package demo
|
|
|
|
infix fun foo(str: String) = kotlin.io.println(str)
|
|
|
|
fun main() {
|
|
<caret>demo.foo("")
|
|
}
|