Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
b32f408767cf86efaa65eb02699fe00bd61d99a6
/
.
/
compiler
/
testData
/
codegen
/
box
/
strings
/
kt889.kt
blob: 52810370105692533bbea164ff93dc1cb88ba33a [
file
]
operator
fun
Int
.
plus
(
s
:
String
)
:
String
{
return
s
}
fun box
()
:
String
{
val s
=
"${1 + "
a
"}"
return
if
(
s
==
"a"
)
"OK"
else
"fail"
}