* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / inh-ctor15.C
bloba0b518c19d34f99fb910684d25410c0eb30ba8ef
1 // Discussions on the core reflector indicate that not inheriting base copy
2 // constructors was a deliberate choice.
4 // { dg-do compile { target c++11 } }
5 // { dg-options -fno-new-inheriting-ctors }
7 struct A { A(int); };
8 struct B: public A
10   using A::A;
13 A a (42);
15 B b1 (24);                      // inherited
16 B b2 (a);                       // not inherited { dg-error "no match" }