Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
j2k
/
testData
/
fileOrElement
/
switch
/
nestedIfFallback.java
blob: c94e798e727e5a485d586fba06fd3b403cbc20d7 [
file
] [
log
] [
blame
]
//method
public
String
foo
(
int
i
,
int
j
)
{
switch
(
i
)
{
case
0
:
if
(
j
>
0
)
{
return
"1"
}
case
1
:
return
"2"
;
default
:
return
"3"
;
}
}