November 24, 2019
https://issues.dlang.org/show_bug.cgi?id=20415

          Issue ID: 20415
           Summary: ice in dwarfeh and when optimizations are enabled
           Product: D
           Version: D2
          Hardware: x86_64
                OS: Linux
            Status: NEW
          Keywords: EH, ice
          Severity: normal
          Priority: P1
         Component: dmd
          Assignee: nobody@puremagic.com
          Reporter: b2.temp@gmx.com

---
#!dmd -O
void t()
{
  auto a = A(false ? B().p : null);
}

struct A
{
  void* p;
}

struct B
{
  void* p;
  ~this() {}
}
---

--