* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / dc5.C
blob57321626e9125647f942809e8987f9fe2bd70cc0
1 // { dg-do run { target c++11 } }
3 #include <cassert>
5 int count = 0;
6 struct VB
8   VB() {++count;}
9 };
11 struct B : virtual VB
13   B() : B(42) {}
14   B(int)  {}
17 struct D : B
19   D() {}
20   D(int) : D() {}
23 int main()
25   D d{42};
26   assert(count == 1);