```c struct X { int x[(int)1]; }; static_assert(sizeof(struct X) == 4); ``` ```bash $ cxx -fcheck x.c x.c:2:8: error: alignment of incomplete type 'int x[(int)1]' struct X { ^ x.c:6:1: error: static assert failed static_assert(sizeof(struct X) == 4); ^ ```