```d import std.stdio; struct S { ubyte a : 4; ubyte b : 4; } void main() { S s = S(8, 15); writeln(s); } ``` prints ``` S(#{overlap a, b}) ```