// PR c++/51239 // { dg-require-effective-target c++11 } // This variant should work because tail is equivalent to list. template class list{}; template using tail=list; template void f(tail); int main() { f({}); }