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