aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.martin/ambig1.C
blob: f2a7f1e2f4bcf42e30c69076e8718e5c37afae65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// { dg-do assemble  }
//Based on a report by Bill Currie <bcurrie@tssc.co.nz>
struct foo {
  protected:
    int x;        // { dg-message "" } candidate
};

struct bar {
  public:
    int x();      // { dg-message "" } candidate
};

struct foobar: public foo, public bar {
  foobar();
};

int func(int);

foobar::foobar()
{
    func(x);       // { dg-error "" } ambiguous member access
}