Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
b32f408767cf86efaa65eb02699fe00bd61d99a6
/
.
/
compiler
/
testData
/
codegen
/
box
/
strings
/
kt881.kt
blob: ba9911d887ea39e5da157d3c5254419a9494d66f [
file
]
fun box
()
:
String
{
val b
=
1
+
1
if
(
"$b"
!=
"2"
)
return
"fail"
if
(
"${1+1}"
!=
"2"
)
return
"fail"
return
"OK"
}