OSDN Git Service

PR c++/51401
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / cpp0x / alias-decl-11.C
1 // { dg-options "-std=c++0x" }
2
3 namespace N
4 {
5   template <class T> using U = T*;
6 };
7
8 void f(N::U<int>) { blah; } // { dg-error "void f(N::U<int>)|not declared" }