Skip analyzer strndup test on hppa*-*-hpux*
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.brendan / sizeof2.C
blob23176fa3583161b8f55d6d5720ec3fbbf5e0b1fe
1 // { dg-do assemble  }
2 // { dg-options "-pedantic-errors" }
3 // GROUPS passed sizeof
4 // ARM $5.3.2
6 void f() { }
8 struct foo { int bit : 1; };
10 int
11 main()
13   // sizeof may not be applied to a bit-field
14   foo f;
15   int i = sizeof (f.bit);// { dg-error "21:invalid application" } .*
17   return 0;