blob: 0a248b1d27f3285aa56bc768d36662f18bf6b3a9 [file] [log] [blame]
// Bug: g++ lies about DECL_CONTEXT, so the backend thinks B::f is not
// function-local.
// Contributed by Jason Merrill <jason@cygnus.com>
// excess errors test
struct A {
virtual void f () = 0;
};
int main()
{
struct B : public A {
void f () { }
};
B b;
}