public class NotNested {
publicstatic void main(String[] args) {
System.out.println("NotNested.main");
int x = 7;
int y;
switch(x) {
case 1: y =1;break;
case 2: y =1;break;
case 3: y =1;break;
}
}
}
Description
endColumn is always 1 for me
test class:
public class NotNested {
publicstatic void main(String[] args) {
System.out.println("NotNested.main");
int x = 7;
int y;
switch(x) {
case 1: y =1;break;
case 2: y =1;break;
case 3: y =1;break;
}
}
}