www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.bugs - [Issue 22175] New: Nested method access to variable formed by

https://issues.dlang.org/show_bug.cgi?id=22175

          Issue ID: 22175
           Summary: Nested method access to variable formed by ternary of
                    constructor and function call, of a struct with four
                    shorts and a bool, crashes DMD.
           Product: D
           Version: D2
          Hardware: x86_64
                OS: Linux
            Status: NEW
          Severity: regression
          Priority: P1
         Component: dmd
          Assignee: nobody puremagic.com
          Reporter: default_357-line yahoo.de

Consider this code:

struct Struct
{
    short a, b, c, d;
    bool e;
}

Struct foo() { return Struct(); }

void main() {
    int i;
    Struct var = i ? Struct() : foo;
    Struct test() { return var; }
}

DMD crashes in the backend since 2.097.0.

--
Aug 03 2021