-
Type:
Bug
-
Resolution: Fixed
-
Priority:
Medium
-
Affects Version/s: None
-
Component/s: Instrumentation
-
None
-
Environment:
Head version of clover2 used for idea7 plugin
endColumn is always 1 for me
test class:
public class NotNested { public static 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; } } }