summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/lookup/disamb1.C
blob: 7585a32e1e279bf5b6b2a1e04325318f02f0f9a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// PR c++/525
// Bug: With -pedantic, we weren't converting this to B1* for the call.

struct A
{
  void f();
};

struct B1: public A {};
struct B2: public A {};

struct C: public B1, public B2
{
  void g() { B1::f(); }
};