Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.dg / template / crash4.C
blob72b2bb18b9f0f217a685d691e1be4172a24be200
1 namespace NS {
2     struct C {};
3     void foo();
6 template <class T> struct X {};
8 template <class T> struct A {
9     A() { foo (X<T>()); }
10     void foo(X<T>);
12 template struct A<NS::C>;