Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
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"