* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / variadic-104.C
blob50956d21a409f8a0c0060f84104b69f88724873e
1 // PR c++/45236
2 // { dg-do compile { target c++11 } }
4 template <class T, class S> class foo;
6 template<template<int...> class C, int... II, class S>
7 struct foo<C<II...>,S>
9     template <class U>
10     struct bar { typedef int type; };
13 template <int... I>
14 struct A {};
16 foo<A<3>, float>::bar<int> x;