FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.brendan / alignof.C
blob1449aded826070cdd9400b9f37bf80a07f94eb0b
1 // Build don't link: 
2 // GROUPS passed extensions
3 struct bar { int bit : 1; };
5 void foo (int *r, bar t)
7   // doing alignof on a bit-field should be illegal
8   __alignof__ (t.bit);// ERROR - .*
10   // both of these (a regular ref and an INDIRECT_REF) should work
11   __alignof__ (r);
12   __alignof__ (*r);