Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.old-deja / g++.pt / derived1.C
blobaebb3d59a96283cbafaf047f7cc12fb2cdaea94e
1 // { dg-do assemble  }
3 class A
5 public:
6   typedef int Info;
7 };
9 template <class T>
10 class B : public A
12 public:
13   typedef struct{
14     int a; 
15     int b;
16   } Info;
19 void f()
21   B<A>::Info ie;
22   ie.a=1;
23   ie.b=2;