01: package javahints; 02: 03: public class TestShortErrors9 { 04: 05: public TestShortErrors9() { 06: final int y; 07: final TestShortErrors9 t; 08: new Runnable() { 09: public void run() { 10: System.err.println(y); 11: System.err.println(t.y); 12: } 13: }; 14: } 15: 16: private int y; 17: }