(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.old-deja/
g++.martin/
ambig1.C
// { 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
}