blob: 2ae14a3596357ad77b6a87567d1a606f1ae9c5c3 [file] [log] [blame]
public class B {
void foo(A i) {
switch (i) {
case ONE :
break;
}
}
}
class Usage {
void foo(A i) {
switch (i) {
case ONE :
break;
}
}
}