blob: 0af57838223b77a45322937cbd2386132353e7be [file] [log] [blame]
// { dg-do assemble }
// { dg-options "-Wall -pedantic" }
// GROUPS passed qualifiers
class bee {
public:
int bee::bar; // { dg-warning "" } there is an extra bee:: here
};
class foo {
public:
int bee::bar; // { dg-error "" } you cannot do this
int me();
};