1 // { dg-options "-std=c++0x" }
2 
3 namespace N
4 {
5   template <class T> using U = T*;
6 };
7 
f(N::U<int>)8 void f(N::U<int>) { blah; } // { dg-error "void f(N::U<int>)|not declared" }
9