* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / inh-ctor10.C
blob48e95a0b1b67d0f775c8f8be3edbc3314ab61b4f
1 // { dg-do compile { target c++11 } }
2 // { dg-options "-g" }
4 struct A
6   template <class... Ts> A(Ts...);
7 };
9 struct B: A
11   using A::A;
14 B b1(42);
15 B b2(1.0, 42, (void*)0);