Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
fc95605a393f931d6a85ae993728de35cb600abb
/
.
/
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
}