xref: /aosp_15_r20/external/stg/test_cases/diff_tests/array/length.0.c (revision 9e3b08ae94a55201065475453d799e8b1378bea6)
1 #define MAX 1
2 
3 struct foo {
4   int bar[MAX];
5 };
6 
baz(const struct foo * z)7 void baz(const struct foo* z) { (void) z; }
8