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

          Issue ID: 24613
           Summary: Bitfield with 64 bits always zero
           Product: D
           Version: D2
          Hardware: x86_64
                OS: Linux
            Status: NEW
          Severity: normal
          Priority: P1
         Component: dmd
          Assignee: nob...@puremagic.com
          Reporter: tim.dl...@t-online.de

Values for a bitfield with 64 bits are not stored and remain 0.
```
struct S
{
    ulong a:64;
}

void main()
{
    S s;
    s.a = 1;
    assert(s.a == 1); // Fails: s.a is 0
}
```

This affects both ImportC and normal D with -preview=bitfields.

--

Reply via email to