Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.old-deja / g++.brendan / template4.C
blob61ad1cc6b37e42e172fec6506072695f6359f7f4
1 // { dg-do assemble  }
2 // GROUPS passed templates
3 // This used to be a circularity in chainon.
4 template <class ARG> struct TMPL {
5     typedef int ARG::*ARG_data_member_ptr;
6     typedef void (ARG::*ARG_func_member_ptr) ();
7 };
9 struct S { };
11 TMPL<S> object;