I'm trying to understand what does the following quote mean (3.4.3/3 N3797):
names following the qualified-id are looked up in the scope of the member’s class or namespace.
namespace A
{
class C
{
public:
static const int a=7;
static int b;
};
}
int A::C::b=a; //7
The scope of the static int b;
consist only of the declarative region following by the b
's point of declaration. Actually:
The potential scope of a name declared in a class consists not only of the declarative region following the name’s point of declaration, but also of all function bodies, default arguments, exception-specifications, and brace-or-equal-initializers of non-static data members in that class
This implies that static const int a=7;
does not belong to the scope of static int b;
. Hence the static const int a=7
cannot be found in the int A::C::b=a;
.
It is a typo in the Standard or it is my misunderstanding?
The quote says "the scope of the member's class", not "the scope of the member"; so
a
is looked up in the class scope ofC
. It can be found there whether or not it's declared afterb
.