Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
j2k
/
testData
/
fileOrElement
/
ifStatement
/
elseIf.java
blob: bc8640154fed6f699e08b3dba346e4a948c66d60 [
file
] [
log
] [
blame
]
//method
void
foo
()
{
if
(
a
)
System
.
out
.
println
(
"a"
)
else
if
(
b
)
System
.
out
.
println
(
"b"
)
else
System
.
out
.
println
(
"else"
)
if
(
c
)
{
System
.
out
.
println
(
"c"
)
}
else
if
(
d
)
{
System
.
out
.
println
(
"d"
)
}
}