https://issues.dlang.org/show_bug.cgi?id=14482

Iain Buclaw <ibuc...@gdcproject.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |REOPENED
         Resolution|FIXED                       |---

--- Comment #2 from Iain Buclaw <ibuc...@gdcproject.org> ---
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);
}
```

--

Reply via email to