* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / inh-ctor20.C
blobf33056df49376dfe0100e7fc6df00f525786fa7f
1 // PR c++/70972
2 // { dg-do compile { target c++11 } }
4 struct moveonly {
5     moveonly(moveonly&&) = default;
6     moveonly() = default;
7 };
9 struct A {
10     A(moveonly) {}
12 struct B : A {
13     using A::A;
16 B b(moveonly{});