2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / access1.C
blobe463ef4c451fc6c2da71169c8f1ff5856e2d015a
1 // { dg-do assemble  }
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   };