FIX: C1001: coff.c, Line 280, new of __declspec(dllimport)

Last reviewed: September 18, 1997
Article ID: Q113429
1.00 WINDOWS NT kbtool kbbuglist kbfixlist

The information in this article applies to:

  • The Microsoft C/C++ Compiler (CL.EXE), included with:

         - Microsoft Visual C++, 32-bit Edition, version 1.0
    

SYMPTOMS

The compiler generates the following internal compiler error message when the sample program below is compiled:

   fatal error C1001: INTERNAL COMPILER ERROR
      (compiler file '@(#)coff.c:1.14', line 280)

The internal compiler error is triggered by the code, which does a new of an array of a class that is marked __declspec(dllimport).

RESOLUTION

To avoid the error, remove the __declspec(dllimport) from the class declaration and link with an import library instead.

STATUS

Microsoft has confirmed this to be a problem in the products listed at the beginning of this article. The problem was corrected in Visual C++, 32-bit edition, version 2.0.

Sample Code

/* Compile options needed: /c
*/

class __declspec(dllimport) CImport { public:
    CImport();
    ~CImport();
};

class CMyClass { protected:

    CImport * piArray;
public:
    CMyClass() {piArray = new CImport[2];}
    ~CMyClass() {delete[] piArray;}
};


Additional reference words: 8.00 9.00 9.10 1.00 2.00 2.10
KBCategory: kbtool kbbuglist kbfixlist
KBSubcategory: CPPIss
Keywords : CPPIss kbbuglist kbfixlist kbtool
Version : 1.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.