* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / alias-decl-15.C
blob2d617ab81fc3938933b88fb05681ea6618008e56
1 // Origin PR c++/51194
2 // { dg-do compile { target c++11 } }
4 template<class U, class V> //#1
5 struct foo {};
7 template<class U, class V=char>
8 struct P {};
10 template<template<class... U> class... TT>
11 struct bar {
12     template<class... Args>
13     using mem = P<TT<Args...>...>;//#2
16 bar<foo>::mem<int, char> b;//#3