blob: 2729ca6e6f70775cca10b3eb5358af62e0824b5e [file] [log] [blame]
// { dg-do assemble }
// GROUPS passed scoping
class BitString {
public:
int i;
int length() const;
};
typedef BitString BS;
class V {
public:
class BitString {
public:
static int x(const ::BitString& value);
static int y(const class ::BitString& value); // should be parsed ok
static int z(const BS& value);
};
};
int
V::BitString::x(const ::BitString& value)
{ return value.length(); }
int
V::BitString::y(const class ::BitString& value) // should be parsed ok
{ return value.length(); }
int
V::BitString::z(const BS& value)
{ return value.length(); }