Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.dg / template / mangle1.C
blob96d064723416e296d52f08be1f5183343f874fbf
1 // PR c++/17324
2 // { dg-do assemble }
4 template<int, typename T> struct A
6   template<int I> void foo(const A<I,T>&) {}
7 };
9 template<typename> struct B
11   template<int J> void bar(const A<J,B>&);
12   void baz() { A<0,B>().foo(A<0,B>()); }
15 template struct B<void>;
16 template struct B<int>;