blob: 428701c8bcb5373ec3d837079412d0828b11d243 [file] [log] [blame]
class Foo {
void foo() {
if (a) {
} else {
}
while (a) {
}
for (int i = 0; i < 10; i++) {
}
do {
} while (true);
switch (a) {
default:
return;
}
try {
} catch (E e) {
} finally {
}
synchronized (this) {
}
int[] i = new int[] {1, 2, 3};
}
}