November 27, 2018
https://issues.dlang.org/show_bug.cgi?id=19440

Andrei Alexandrescu <andrei@erdani.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Assignee|nobody@puremagic.com        |edi33416@gmail.com

--
May 16, 2019
https://issues.dlang.org/show_bug.cgi?id=19440

Seb <greeenify@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |greeenify@gmail.com
         Resolution|---                         |FIXED

--- Comment #1 from Seb <greeenify@gmail.com> ---
It's now @nogc:

---
extern(C) void onRangeError (
  string file = __FILE__,
  ulong line = cast(ulong)__LINE__
) pure nothrow @nogc @trusted;
---

--