Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.dg / parse / constant7.C
blobc54ad55c1f058de1b5fc1f67ec4f4268ec3d98b9
1 // PR c++/19991
2  
3 enum { e = 1 };
5 template<typename> struct A
7   static const int i = e;
8   char a[i];
9 };