FIX: Fatal Error C1001: Compiler File MSC1.CPP Line 1056

Last reviewed: September 18, 1997
Article ID: Q123803
2.00 WINDOWS NT kbtool kbfixlist

The information in this article applies to:

   The Microsoft C/C++ Compiler (CL.EXE), included with
     - Microsoft Visual C++, 32-bit Edition, version 2.0

SYMPTOMS

When compiling the Sample Code below, the compiler gives the following fatal error message:

   test.cpp(14) : fatal error C1001: INTERNAL COMPILER ERROR
                   (compiler file 'msc1.cpp', line 1056)
       Please choose the Technical Support command on the Visual C++
       Help menu, or open the Technical Support help file for more
       information

RESOLUTION

See the workaround embedded in the Sample Code section of this article.

STATUS

Microsoft has confirmed this to be a bug in the Microsoft products listed at the beginning of this article. This problem was fixed in Microsoft Visual C++, 32-bit Edition, version 4.0.

MORE INFORMATION

The sample code below can be used to reproduce the compiler error.

Sample Code to Reproduce Problem

/* Compile options needed: none
*/

#include <iostream.h>

template <class T> class genvec3d { }; template <class T> ostream& operator<< (ostream& o, const genvec3d<T>& p) {
   return o;
}

class ray {

   public:
                genvec3d<float> origin;
                ray(){}

                friend int operator<<(ostream& o, ray& r)
/* The following line causes compiler Error */
                { o << origin; return 1; }

/* To work around the problem, change the line above into a comment and
   change the following line to an executed line of code.  */
            /*  { o << r.origin; return 1; }  */
};


Additional reference words: 9.00 2.00
KBCategory: kbtool kbfixlist kbbuglist
KBSubcategory: CPPIss
Keywords : CPPIss kbbuglist kbfixlist kbtool
Version : 2.00
Platform : NT WINDOWS
Solution Type : kbfix


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: September 18, 1997
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.