Files
kotlin/compiler/testData/codegen/box/functions/prefixRecursiveCall.kt

8 lines
169 B
Kotlin
Vendored

operator fun String.unaryPlus() : String {
if (this == "") {
return "done"
}
return +""
}
fun box() : String = if (+"11" == "done") "OK" else "FAIL"