* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / variadic128.C
blob8c2d3b233592e9fbc1733ef8fd547042a64fbc91
1 // PR c++/50303
2 // { dg-do compile { target c++11 } }
4 template<typename Interface>
5 struct A1 {
6 };
8 template<template<class I> class... Actions>
9 void g2() {
10   g2<Actions...>();
13 int main()
15   g2<A1>();