[Issue 20415] New: ice in dwarfeh and when optimizations are enabled
    d-bugmail at puremagic.com 
    d-bugmail at puremagic.com
       
    Sun Nov 24 10:14:15 UTC 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 at puremagic.com
          Reporter: b2.temp at gmx.com
---
#!dmd -O
void t()
{
  auto a = A(false ? B().p : null);
}
struct A
{
  void* p;
}
struct B
{
  void* p;
  ~this() {}
}
---
--
    
    
More information about the Digitalmars-d-bugs
mailing list