Files
kotlin-fork/idea/testData/intentions/toInfixCall/singlePackageFunctionCall.kt
T
Yan Zhulanow 6752df189d Make infix modifier diagnostic message more informative (KT-12589)
(cherry picked from commit 2744309)
2016-06-24 15:10:19 +03:00

11 lines
247 B
Kotlin
Vendored

// WITH_RUNTIME
// IS_APPLICABLE: false
// ERROR: infix modifier is inapplicable on this function: must be a member of an extension function
package demo
infix fun foo(str: String) = kotlin.io.println(str)
fun main() {
<caret>demo.foo("")
}