Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.dg / parse / new1.C
blob31dad773935233e98201a1735bd71e150b44ca57
1 struct T;
2 T* manage(T* t);
3 template <class Obj> struct ObjectSlot0_ {
4   void create() {
5     void* tmp = manage(new T());
6   }
7 };