blob: 4b78d7ce4373dc1c7f32128c6cdebc550e61f92c [file] [log] [blame]
extern void abort (void);
struct S {
unsigned b4:4;
unsigned b6:6;
} s;
int main()
{
s.b6 = 31;
s.b4 = s.b6;
s.b6 = s.b4;
if (s.b6 != 15)
abort ();
return 0;
}