xref: /aosp_15_r20/external/ltp/metadata/tests/array_size03.c (revision 49cdfc7efb34551c7342be41a7384b9c40d7cab7)
1 static struct foo variants[] = {
2 #ifdef FOO
3 	{.bar = 11},
4 #endif
5 	{.bar = 10},
6 };
7 
8 static struct tst_test test = {
9 	.test_variants = ARRAY_SIZE(variants),
10 };
11