https://issues.dlang.org/show_bug.cgi?id=14482
Iain Buclaw <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |REOPENED Resolution|FIXED |--- --- Comment #2 from Iain Buclaw <[email protected]> --- Nope still a bug in DMD. ``` void test8() { int a; goto L2; // BOOM! Jump into a forbidden EH region try { a += 2; } catch (Exception) { a += 3; L2: ; a += 100; } assert(a == 100); } ``` --
