// PR c++/51239 // { dg-require-effective-target c++11 } template class list{}; template using tail=list; template void f(tail); // { dg-error "alias" } int main() { f({}); }