blob: 988f958b5cb74eec1e10d2f7339abfacc4603bb3 [file] [log] [blame]
package validSelection;
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;
}
}