01: package markOccurrences; 02: 03: public class Test4 { 04: 05: public static final int CONST = 2; 06: 07: public Test4() { 08: System.out.println(CONST); 09: } 10: 11: { 12: int x = CONST; 13: } 14: 15: public void method() { 16: int x = CONST; 17: } 18: 19: int a = CONST; 20: 21: }