http://bugzilla.gdcproject.org/show_bug.cgi?id=191
--- Comment #2 from Iain Buclaw <ibuc...@gdcproject.org> --- Extending from the original PR, there are another two tests to consider (which shows why it gets complicated). class OuterClass { void recurse() { class InnerClass { void test() { void localFunction() { void anotherLocalFunction() { recurse(); // Ensure we handle Nth depth. } anotherLocalFunction(); } localFunction(); } } } } class OuterClass { void recurse() { class InnerClass { void test() { void localFunction() { int a = 42; void anotherLocalFunction() { a++; // And correctly handle any // static chains along the way. recurse(); } anotherLocalFunction(); } localFunction(); } } } } -- You are receiving this mail because: You are watching all bug changes.