http://gcc.gnu.org/ml/gcc-patches/2008-02/msg00110.html
[official-gcc.git] / gcc / testsuite / g++.dg / parse / template8.C
blobe4af7eea3a56ee51e01917e5b4bc427e3379af91
1 namespace N
4 template <typename> struct A
6   template <typename T> A(A<T>);
7 };
11 void foo(N::A<int>);
13 void bar()
15   foo(N::A); // { dg-error "" }