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