* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / inh-ctor9.C
blob5bfdd499d46cec4bb51b7c25f2c1e8359f8a8700
1 // { dg-do compile { target c++11 } }
3 class A
5   int i;
6 protected:
7   A(int i): i(i) {}
8 };
10 struct B: A
12   using A::A;
15 B b(42);                        // { dg-error "this context" }