I would like to have labeled bits in a union with a ubyte. Something like this:
```d
struct MyStruct {
    union {
        ubyte status;
        bit A, B, C…etc
    }
}
```
Is something like this possible?

Thanks

Reply via email to