Files
kotlin-fork/backend.native/tests/external/codegen/box/functions/prefixRecursiveCall.kt
T
2017-03-13 15:31:46 +03:00

8 lines
169 B
Kotlin

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