You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.