xref: /aosp_15_r20/external/stg/test_cases/info_tests/struct/bit_field.c (revision 9e3b08ae94a55201065475453d799e8b1378bea6)
1 struct Foo {
2   short rest_of_the_struct;
3   short x : 5;
4   short y : 6;
5   short z : 5;
6 };
7 
8 struct Foo var;
9