rt_gccstream/gcc/testsuite/g++.old-deja/g++.other/lookup21.C

18 lines
285 B
C

// { dg-do run }
// Check that we don't complain about ambiguity between the same static
// member function in different subobjects.
struct A {
static void f() {}
};
struct B: public A { };
struct C: public A { };
struct D: public B, public C { };
int main()
{
D d;
d.f();
}