This question comes from wanting to be able to throw an exception in code that is @nogc.
https://dlang.org/changelog/2.079.0.html#dip1008 ```d void main() @nogc { throw new Exception("I'm @nogc now"); } ```
timotheecour via Digitalmars-d-learn Thu, 19 Jul 2018 09:31:09 -0700
This question comes from wanting to be able to throw an exception in code that is @nogc.
https://dlang.org/changelog/2.079.0.html#dip1008 ```d void main() @nogc { throw new Exception("I'm @nogc now"); } ```