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.
Comment #1 by robert.schadek — 2024-12-13T19:35:47Z