BUG: &(*variable) Causes C1001, trees.c line 6256Last reviewed: March 27, 1997Article ID: Q165944 |
The information in this article applies to:
SYMPTOMSThe sample code below generates the following error when it is in a .c file:
fatal error C1001: INTERNAL COMPILER ERROR (compiler file '.\trees.c', line 6256) Please choose the Technical Support command on the Visual C++ RESOLUTIONPlace the code in a file with a .cpp or .cxx extension.
STATUSMicrosoft has confirmed this to be a bug in the Microsoft products listed at the beginning of this article. We are researching this bug and will post new information here in the Microsoft Knowledge Base as it becomes available.
MORE INFORMATION
Steps to Reproduce Behavior
#include <string.h> void func(void) { typedef char test[10]; test *pstest; memset(&(*pstest),'A',sizeof(test)); } |
Additional query words: ICE
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |