The following code segfaults when compiled with -checkaction=context: ======================================= void main() { Object o = null; assert(o !is o); } ======================================= This segfaults because miniFormat unconditionally calls toString on a null reference.
@MoonlightSentinel created dlang/druntime pull request #3045 "Fix Issue 20750 - checkaction=context segfaults for null references" fixing this issue: - Fix Issue 20750 - checkaction=context segfaults for null references https://github.com/dlang/druntime/pull/3045
dlang/druntime pull request #3045 "Fix Issue 20750 - checkaction=context segfaults for null references" was merged into stable: - a045839291d07a9366d42920f1cf30b030d9fc35 by MoonlightSentinel: Fix Issue 20750 - checkaction=context segfaults for null references https://github.com/dlang/druntime/pull/3045