https://issues.dlang.org/show_bug.cgi?id=12578
--- Comment #7 from Kenji Hara <[email protected]> --- One more issue which has same root is a mutual call of local functions. void test() { void foo() { bar(); } // error, bar not defined void bar() { foo(); } // ok } My proposal in comment#5 could resolve the case with same way. --
