Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.dg / tc1 / dr74.C
blob155c7981b52256043563f94675bddfc64b7b975b
1 // { dg-do compile }
2 // Origin: Giovanni Bajo <giovannibajo at gcc dot gnu dot org>
3 // DR74: Enumeration value in direct-new-declarator 
5 struct A {};
6 enum E1 { COUNT = 10 };
8 A* a = new A[COUNT];