* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / inh-ctor7.C
blob280ccfebed7c09cae97909c3143095bdeb2f90a5
1 // { dg-do compile { target c++11 } }
3 struct A
5   int i;
6   template <class T>
7   constexpr A(T t): i(t) {}
8 };
10 struct B: A
12   using A::A;
15 constexpr B b(42);
17 #define SA(X) static_assert((X),#X)
18 SA(b.i == 42);