Windows: fix possible buffer overflows
[geany-mirror.git] / tests / ctags / enum.java
blob7293e13f4fb6097bb32b05cba5ed56073a4250dd
1 public enum e {
2 A, // should be 'e', not 'f'
3 B(), // should be 'e', not 'm'
4 C(1), // should be 'e', not missing
5 D, // should be 'e', not 'f'
6 E(), // should be 'e', not 'm'
7 F(1), // should be 'e', not missing
10 public String string;
11 public final Shape shape;
12 public final boolean twoKeywordsInARow;
14 public String getString() {
15 return string;
17 public final Shape getShape() {
18 return shape;