01: package javahints; 02: 03: public class TestShortErrors8 { 04: 05: public TestShortErrors8() { 06: int y = 0; 07: TestShortErrors8 t = null; 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: }