Article ID: 67041 - Last Review: July 5, 2005 - Revision: 2.1 BUG: Structure Tags Visible Outside of Function Prototype ScopeThis article was previously published under Q67041 On This PageSYMPTOMS
The 16-bit compilers listed above incorrectly generate the follow error
message:
error C2025: 'tag1': enum/struct/union type redefinition
error C2011: 'tag1' : 'union' type redefinition
CAUSE
The scope of an identifier in C is determined by the placement of its
declaration. According to the ANSI specification, if an identifier's
declarator or type specification appears within a list of parameter
declarations in a function prototype, the identifier is said to have
"function prototype scope." This scope terminates at the end of the
function prototype. In the C and QuickC compilers, this scope is not
correctly terminated for structure and union tags, and a C2025 error may be
incorrectly generated.
STATUS
Microsoft has confirmed this to be a bug in the Microsoft products listed
at the beginning of this article. We are researching this problem and will
post new information here in the Microsoft Knowledge Base as it becomes
available.
MORE INFORMATION
The sample code below demonstrates this problem. The identifier "tag1" is a
struct/union tag that does appear twice, but because the second instance
appears in the prototype for func1(), it should have scope that is local to
the prototype only. The same is true for "num". Section 3.1.2.1 of the ANSI specification states the following:
If an outer declaration of a lexically identical identifier exists
in the same name space, it is hidden until the current scope
terminates, after which it again becomes visible.
Thus, both of these identifiers should not be visible outside of the
prototype itself. Yet, the compiler correctly allows the name "num" to be
reused, while incorrectly generating the following error for "tag1":
error C2025: 'tag1' : enum/struct/union type redefinition
error C2011: 'tag1' : 'union' type redefinition
Sample CodeAPPLIES TO
| Article Translations
|

Back to the top
