Files
kotlin-fork/idea/testData/intentions/toInfixCall/singlePackageFunctionCall.kt
T
Valentin Kipyatkov d1afff1612 Renamed intention
2015-05-02 14:03:25 +03:00

9 lines
139 B
Kotlin
Vendored

// WITH_RUNTIME
// IS_APPLICABLE: false
package demo
fun foo(str: String) = kotlin.io.println(str)
fun main() {
<caret>demo.foo("")
}