blob: f2a7f1e2f4bcf42e30c69076e8718e5c37afae65 [file] [log] [blame]
// { 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
}