aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.other/lookup21.C
blob: 3a7795de1295c8aa3237f90699ec5b493824d704 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// { 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();
}