Comment #0 by pro.mathias.lang — 2018-09-26T18:06:46Z
When trying to throw `core.stdcpp.exception : exception` from D (the std::exception definition), DMD complains with:
```
foo.d(2): Error: can only throw class objects derived from Throwable, not type core.stdcpp.exception.std.exception
```
Code to reproduce:
```
import core.stdcpp.exception;
void main () { throw new exception(); }
```
Comment #1 by robert.schadek — 2024-12-13T19:00:39Z