blob: b342bb5f6c9bfda24387be37185ce8337c4af2e1 [file] [log] [blame]
// Build don't link:
// GROUPS passed
struct A { virtual void f(); };
struct B { virtual void f() ; };
struct C : virtual A , virtual B { virtual void f(); };
/* This used to get an error because the DECL_CONTEXT was blown away. */
void g(A *ptr) { ptr->f(); }