Daily bump.
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / access1.C
blob43aff60a161384f6abc84ee0a33e0c050ef51097
1 // Build don't link:
3 class X{
4     unsigned int i;
5   public:
6     void f();
7 };
9 void X::f()
11   union {
12     int foo[sizeof (i)];
13   };