blob: 65a9c58ceb2eb04f73bc297fc30163e245f8ebe7 [file] [log] [blame]
// { dg-options -Wall }
// Copyright (C) 2004 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 27 Sept 2004 <nathan@codesourcery.com>
// Origin: v.haisman@sh.cvut.cz
// Bug 17681: bad diagnostic text.
struct A
{ };
struct B
{ };
struct C : public B, public A
{
C () // { dg-warning "when initialized" "" }
: A(), B() // { dg-warning "base .\[AB\]." "" }
{ }
};