DOCUMENT:Q166513 04-MAY-2001 [visualc] TITLE :FIX: Typedef Type Causes C2275: Illegal Use of Type PRODUCT :Microsoft C Compiler PROD/VER:winnt:4.2,5.0 OPER/SYS: KEYWORDS:kbtool kbVC420bug kbVC500bug kbVC600fixkbbuglist ====================================================================== ------------------------------------------------------------------------------- The information in this article applies to: - The C/C++ Compiler (CL.EXE), used with: - Microsoft Visual C++, 32-bit Enterprise Edition, version 4.2 - Microsoft Visual C++, 32-bit Professional Edition, version 4.2 - Microsoft Visual C++, 32-bit Enterprise Edition, version 5.0 - Microsoft Visual C++, 32-bit Professional Edition, version 5.0 ------------------------------------------------------------------------------- SYMPTOMS ======== Using a typedef cast in the member initialization of a class may cause the following errors: error C2275: 'test::run' : illegal use of this type as an expression error C2146: syntax error : missing ')' before identifier 'arg' error C2612: trailing '.*|->*' illegal in base/member initializer list error C2059: syntax error : ')' error C2143: syntax error : missing ';' before '{' fatal error C1004: unexpected end of file found RESOLUTION ========== Use the actual type rather then the typedef. For example, in the following sample use test::run rather than test_run. Or, use the functional notation test_run (arg) for type conversion instead of the cast notation. Another option is to initialize the member in the body of function. STATUS ====== Microsoft has confirmed this to be a problem in the Microsoft products that are listed at the beginning of this article.This problem was corrected in Microsoft Visual C++ version 6.0. MORE INFORMATION ================ /* Compiler Options Needed : none */ class test { public: enum run{ one, two, three }; }; typedef test::run test_run; class test2 { test2(int); ~test2(); public: test_run testvalue; }; test2::test2(int arg):testvalue( (test_run) arg) {} //Causes error // test2::test2(int arg):testvalue( (test::run) arg) {} //WORKAROUND 1 // test2::test2(int arg):testvalue( test_run (arg)) {} //WORKAROUND 2 Additional query words: ====================================================================== Keywords : kbtool kbVC420bug kbVC500bug kbVC600fix kbbuglist Technology : kbVCsearch kbAudDeveloper kbCVCComp Version : winnt:4.2,5.0 Issue type : kbbug 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. Copyright Microsoft Corporation 2001.