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