1/* This does not work on NetWare, which has a default of 1-byte alignment.  */
2/* { dg-xfail-if "" { "*-*-netware*" } { "*" } { "" } } */
3extern struct foo bar;
4struct foo {
5  int a;
6};
7
8int tst[__alignof__ (bar) >= __alignof__ (int) ? 1 : -1];
9