* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / nsdmi11.C
blob29942b07b8a65957feb23fcb46a5c73e076dbfe4
1 // PR c++/66320
2 // { dg-do compile { target c++11 } }
4 class A
6   virtual int m_fn1 ();
7 };
8 class B
10 public:
11   B (int);
13 class D : B
15   struct C
16   {
17     A a;
18     A b = a;
19   };
20   D (int *);
21   C _channels;
23 D::D (int *) : B (0) {}