OSDN Git Service

* c-decl.c (pushdecl): When an extern declaration at block scope
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / compile / 20001109-1.c
1 /* This does not work on NetWare, which has a default of 1-byte alignment.  */
2 /* { dg-xfail-if "" { "*-*-netware*" } { "*" } { "" } } */
3 typedef struct _foo foo;
4 extern foo bar;
5 struct _foo {
6   int a;
7 };
8
9 int tst[__alignof__ (bar) >= __alignof__ (int) ? 1 : -1];