blob: 2c12981081d30f989e53cce69cec1f92a54ea707 [file] [log] [blame]
if (a) {
b
}
else if (c) {
d
}
else if (e) {
f
}
else if (g) {
h
}
-----
if (a) {
b
} else
if (c) {
d
} else
if (e) {
f
} else
if (g) {
h
}