11 lines
206 B
Kotlin
Vendored
11 lines
206 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
// IS_APPLICABLE: false
|
|
// ERROR: 'infix' modifier is inapplicable on this function
|
|
|
|
package demo
|
|
|
|
infix fun foo(str: String) = kotlin.io.println(str)
|
|
|
|
fun main() {
|
|
<caret>demo.foo("")
|
|
} |