blob: 654cb5dc0e93d858580861d43bf24dbe4c1d1d8c [file] [log] [blame]
// Copyright (C) 2004 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 15 Oct 2004 <nathan@codesourcery.com>
// We forgot to ignore current context and friends when determing
// which exceptions shadowed eachother.
struct E;
struct B {};
struct D : private B
{
friend class E;
static B *baz (D *);
virtual void V () throw (B); // { dg-warning "overridden" "" }
};
struct E : public D
{
virtual void V () throw (D); // { dg-error "more lax" "" }
};
B* foo (D *);
B *D::baz (D *p)
{
try {foo (p);}
catch (B const &b) {}
catch (D const &d) {}
return p;
}