* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-inhctor1.C
blob98691101e860b90d6779cceaeb48ac479b0b9730
1 // PR c++/58511
2 // { dg-do compile { target c++11 } }
4 struct A
6   constexpr A(int, int = i) {}
7   static const int i;
8 };
10 struct B : A
12   using A::A;                   // { dg-prune-output "A::i" }
15 constexpr B b(0);               // { dg-error "" }