1 /* gcc -gctf -c test-bitfield-enum.c -o test-bitfield-enum.o */ 2 enum event_kind 3 { 4 NO_EVENT, 5 }; 6 7 struct input 8 { 9 enum event_kind kind : 16; 10 }; 11 12 struct input e; 13