blob: 5e1a954f0ffd2ea7b1ba3781549e6c5ea64d4e32 [file] [log] [blame]
/**
* New Lines
*/
public class Empty {
}
class Example {
static int[] fArray = { 1, 2, 3, 4, 5 };
Listener fListener = new Listener() {
};
// the following line contains line breaks
// which can be preserved:
void bar() {
}
void foo() {
;
;
do {
} while (false);
for (;;) {
}
}
}
enum MyEnum {
UNDEFINED(0) {
}
}
enum EmptyEnum {
}