blob: ce19eb1e0dcccedf696d343eff38da24e0535bfc [file] [log] [blame]
class Foo {
void foo() {
if (a) {
}
while (a) {
}
do {
} while (a);
try {
} catch (Exception e) {
} finally {
}
switch (a) {
}
for (a) {
}
}
}