OSDN Git Service

PR c++/21123
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / inherit / multiple1.C
1 // { dg-options "-w" }
2
3 struct Base {
4   int b;
5   
6   Base(int b) : b(b) { }
7 };
8
9 struct Derived : public Base {
10   Derived(int d) : Base(d) { }
11 };
12
13 struct Final : public Derived, public Base {
14   Final(int f) : Derived(f), Base(f-1) { }
15 };
16
17 int main()
18 {
19   Final f(5);
20 }