BUG: No Error w/Public NAMELIST Variables with PRIVATE MembersLast reviewed: March 18, 1996Article ID: Q148624 |
The information in this article applies to:
SYMPTOMSThe Compiler does not generate an appropriate warning or error message when publicly visible NAMELIST variables contain PRIVATE data members.
STATUSMicrosoft 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
Sample Code to Illustrate ProblemC Compile options needed: none
MODULE M
TYPE T
PRIVATE
INTEGER I,J
END TYPE
END MODULE
PROGRAM MOD
USE M
TYPE (T) X
NAMELIST /GROUP_NAME/ X ! No compiler warning or error
END PROGRAM MOD
|
Additional reference words: 4.00
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |