Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Class declaration in same scope as using declaration compiles in GCC but not MSVS

Is the following program well-formed according to the c++ standard?

namespace X { class A; }

namespace Y { using X::A; class A {}; }

int main() {}

I'm getting different results with different compilers:

  • gcc compiles it without errors.
  • visual c++ gives error C2888: 'X::A': symbol cannot be defined within namespace 'Y'

I don't find any rule in the c++ standard that my program violates.

If the program is well-formed, why does visual studio give an error?

If the program is not well-formed, what rule in the c++ standard did it violate and why doesn't gcc give an error?

I'm not trying to make my program compile. I'm just trying to find out if it is well-formed according to the c++ standard and why the two compilers I tested behave differently.

like image 751
Supremum Avatar asked Oct 31 '22 00:10

Supremum


1 Answers

I believe the program is ill formed. [basic.scope.declarative]/4 says:

Given a set of declarations in a single declarative region, each of which specifies the same unqualified name,

— they shall all refer to the same entity, or all refer to functions and function templates; or

— exactly one declaration shall declare a class name or enumeration name that is not a typedef name and the other declarations shall all refer to the same variable or enumerator, or all refer to functions and function templates; in this case the class name or enumeration name is hidden

The two declarations of unqualified name A refer to different entities, both of which are classes.

(Interestingly, neither GCC 6.0 nor Clang 3.7 seem to diagnose it that way. Both accept the code as written (not diagnosing the declaration of two distinct classes with the same name). If you add X::A a; to the body of main, then Clang complains about the incomplete type of X::A.)

like image 197
Kerrek SB Avatar answered Nov 13 '22 06:11

Kerrek SB