OSDN Git Service

* c-decl.c (declspecs_add_type): Don't pedwarn for _Complex in
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / empty1.c
1 /* { dg-do run } */
2 /* { dg-options "" } */
3
4 struct S { int : 0; };
5 union U { int : 0; };
6
7 int main () {
8   if (__alignof__ (struct S) != __alignof__ (union U))
9     return 1;
10   return 0;
11 }