Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6f1b95d296c5592d3a3e71cc638994fa2ba4e4f7
/
.
/
compiler
/
testData
/
codegen
/
box
/
controlStructures
/
ifIncompatibleBranches.kt
blob: 93cd9b07c5730767f4092f86e19df416d9e88607 [
file
]
fun box
():
String
{
var
s
=
"2"
var
res
=
"Fail"
if
(
s
==
"1"
)
{
false
}
else
if
(
s
==
"2"
)
{
res
=
"OK"
}
return
res
}