Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
847a2ced07911ac5a943ed41390d054d0e81aa1f
/
.
/
compiler
/
testData
/
codegen
/
box
/
functions
/
prefixRecursiveCall.kt
blob: 7fe750fc4ec0e620d0e1eaf8d224dcf2570bb46c [
file
]
operator
fun
String
.
unaryPlus
()
:
String
{
if
(
this
==
""
)
{
return
"done"
}
return
+
""
}
fun box
()
:
String
=
if
(+
"11"
==
"done"
)
"OK"
else
"FAIL"