Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ed7ee67e4e1513f9b3ba9587b6d6e950e7a1da7f
/
.
/
compiler
/
testData
/
codegen
/
box
/
functions
/
kt2929.kt
blob: 4367923fc299b8f946f54e586e45abd624626be3 [
file
]
fun foo
():
Int
{
val a
=
"test"
val b
=
"test"
return
a
.
compareTo
(
b
)
}
fun box
():
String
=
if
(
foo
()
==
0
)
"OK"
else
"Fail"