Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.old-deja / g++.pt / enum4.C
blob6e9f1e090b6cb2b38f227a002e0a1438c95f4f32
1 // { dg-do assemble  }
3 template <class T>
4 struct U
6   T mT;
7 };
8  
9 template <class H>
10 struct M
12   enum FLAG {On, Off};
13   U<FLAG> mUF;
16 M<char> gm;