BUG: L2025 Error Because Member Function Not DecoratedLast reviewed: July 17, 1997Article ID: Q100540 |
7.00 | 1.00 1.50
MS-DOS | WINDOWS
kbtool kbbuglist
The information in this article applies to:
SYMPTOMSAn attempt to link an application compiled with Microsoft C/C++ fails and Microsoft LINK generates the following message:
L2025: _main : symbol defined more than once CAUSEA class in the application contains a member function named "main()".
RESOLUTIONAt present, the only method to work around this error involves changing the name of the function to something other than "main()".
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 INFORMATIONThe following code example demonstrates this problem.
Sample Code
/* * Compile options needed: None */class test { public: static void main() { };};
void main (void){ test t; t.main();}
|
Additional reference words: 1.00 1.50 7.00 8.00 8.00c
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |