DOCUMENT:Q214619 11-FEB-2002 [visualc] TITLE :FIX: Type Definition Is Not Inherited in Derived Template Class PRODUCT :Microsoft C Compiler PROD/VER::6.0 OPER/SYS: KEYWORDS:kberrmsg kbCompiler kbCPPonly kbLangCPP kbVC600bug kbDSupport ====================================================================== ------------------------------------------------------------------------------- The information in this article applies to: - Microsoft Visual C++, 32-bit Enterprise Edition, version 6.0 - Microsoft Visual C++, 32-bit Professional Edition, version 6.0 - Microsoft Visual C++, 32-bit Learning Edition, version 6.0 ------------------------------------------------------------------------------- SYMPTOMS ======== When you compile a template class that references a type that is defined in a base template class, the following error message might appear: error C2653: '' : is not a class or namespace name RESOLUTION ========== To work around this problem, reimplement the typedef down the hierarchy of derived classes. STATUS ====== Microsoft has confirmed this to be a bug in the Microsoft products listed at the beginning of this article. This problem was corrected in Microsoft Visual C++ .NET. MORE INFORMATION ================ The following sample code reproduces the behavior: Compile options needed: None. template struct A { typedef int MyIntA; }; template struct B { typedef A ATempl; }; template struct C : public B { // Uncomment the following line for the workaround. // typedef A ATempl; }; template struct D: public C< A > { typedef typename ATempl::MyIntA MyIntD; // Does not inherit from // class B. }; Additional query words: ====================================================================== Keywords : kberrmsg kbCompiler kbCPPonly kbLangCPP kbVC600bug kbDSupport Technology : kbVCsearch kbAudDeveloper kbVC600 kbVC32bitSearch Version : :6.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 2002.