6 expecti(__alignof_is_defined, 1);
8 expecti(alignof(char), 1);
9 expecti(alignof(int), 4);
10 expecti(alignof(long), 8);
17 expecti(alignof(struct test), 8);
19 expecti(_Alignof(char), 1);
20 expecti(__alignof__(char), 1);
21 expecti(_Alignof(struct test), 8);
22 expecti(__alignof__(struct test), 8);
40 expecti(alignof(struct complex), 16);