Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
073a50037049a4e0869085bf4acf7c29e56210e3
/
.
/
compiler
/
testData
/
codegen
/
box
/
strings
/
stringPlusOverride.kt
blob: 21a613308901b5f44689b18181cbaa577d8def10 [
file
] [
log
] [
blame
]
operator
fun
String
?.
plus
(
p
:
String
):
String
{
return
""
+
this
}
fun test
(
a
:
String
?,
b
:
String
):
String
{
return
a
+
b
}
fun box
()
=
test
(
"OK"
,
" Fail"
)