Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.dg / template / deduce3.C
blobd6d68a81bc72642d784df7d5ccb096b8aed0331f
1 template <typename T>
2 void f(int, T (*)() = 0);
4 void g() {
5   typedef int A[2];
6   f<A>(0); // { dg-error "" }
7   typedef void F();
8   f<F>(0); // { dg-error "" }