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