aboutsummaryrefslogtreecommitdiff
path: root/metadata/tests/array_size03.c
blob: 9058db813764b89e8df803a6b53c1e2be743ceb3 (plain)
1
2
3
4
5
6
7
8
9
10
static struct foo variants[] = {
#ifdef FOO
	{.bar = 11},
#endif
	{.bar = 10},
};

static struct tst_test test = {
	.test_variants = ARRAY_SIZE(variants),
};