* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-virtual.C
blob2c13e3ef1882b186263c83eac2124bf548744b62
1 // PR c++/47067
2 // { dg-do compile { target c++11 } }
4 struct X {
5     virtual void x();
6     virtual ~X();
7 };
9 struct Y {
10     virtual void y();
11     virtual ~Y();
14 struct Z: X, Y {} z;