blob: 7563c64e1cb5dc7ed58ff313a421f106d6c98a82 [file] [log] [blame]
class Usage {
void foo(int i) {
switch (i) {
case Test.FOO:
break;
case Test.BAR:
break;
}
}
void foobar() {
foo(Test.FOO);
foo(Test.BAR);
}
}