blob: 1ee8f0ec6cc99f049caa3494b5cfdbc9c89219c6 [file] [log] [blame]
public class Test {
public static final int FOO = 0;
public static final int BAR = 1;
void foo(int i) {
switch (i) {
case FOO:
break;
case BAR:
break;
case 8:
break;
}
}
void foobar() {
foo(FOO);
foo(BAR);
}
}