1 // { dg-do compile { target c++11 } }
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