blob: 19a5f90db43b1d78a7b22194de55b284dde68248 [file] [log] [blame]
package invalidSelection;
public class A_test140 {
public boolean flag;
public int foo() {
int i= 10;
/*]*/switch(i) {
case 1:
if (flag)
break;
foo();
case 2:
return 10;
default:
throw new NullPointerException();
}/*[*/
return 10;
}
}