OSDN Git Service

/cp
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / other / error9.C
1 // { dg-options -Wall }
2
3 // Copyright (C) 2004 Free Software Foundation, Inc.
4 // Contributed by Nathan Sidwell 27 Sept 2004 <nathan@codesourcery.com>
5
6 // Origin:       v.haisman@sh.cvut.cz
7 // Bug 17681: bad diagnostic text.
8
9 struct A
10 { };
11
12 struct B
13 { };
14
15 struct C : public B, public A
16 {
17   C ()  // { dg-warning "when initialized" "" }
18     : A(), B()  // { dg-warning "base .\[AB\]." "" }
19   { }
20 };