2 // GROUPS passed scoping
15 static int x(const ::BitString& value);
16 static int y(const class ::BitString& value); // should be parsed ok
17 static int z(const BS& value);
22 V::BitString::x(const ::BitString& value)
23 { return value.length(); }
26 V::BitString::y(const class ::BitString& value) // should be parsed ok
27 { return value.length(); }
30 V::BitString::z(const BS& value)
31 { return value.length(); }