1 /// We don't get a layout for this bitfield, since we don't know what `T` will
2 /// be, so we cannot allocate bitfield units. The best thing we can do is make
3 /// the struct opaque.
4 template <class T>
5 class TemplatizedBitfield {
6     T t : 6;
7 };
8