Qualified name lookup in the name

315 Views Asked by At

I want to understand the namespace qualified name lookup rule. I'm trying to do that on the example:

namespace A
{
    int a=::b; //error: ‘::b’ has not been declared
}
int b=6;

There is a quote which I rely in my reasoning (3.4.3.2/2 N3797):

For a namespace X and name m, the namespace-qualified lookup set S(X, m) is defined as follows: Let S (X, m) be the set of all declarations of m in X and the inline namespace set of X (7.3.1). If S (X, m) is not empty, S(X, m) is S (X, m); otherwise, S(X, m) is the union of S(Ni , m) for all namespaces Ni nominated by using-directives in X and its inline namespace set.

Let X be a global scope. We have that S(X,b)={int b=6}. This implies that name lookup must be success. But in fact, the program is ill-formed. Might I don't understood this rule correctly?

1

There are 1 best solutions below

3
On

b is in global scope but it must be declare before where you are using it. like

int b=6;
namespace A
{
    int a=::b; 
}

(N 3690 Draft) 3.4.1 Unqualified name lookup 4. A name used in global scope, outside of any function, class or user-declared namespace, shall be declared before its use in global scope.