Skip to content

Latest commit

 

History

History
21 lines (17 loc) · 482 Bytes

compiler-error-c2516.md

File metadata and controls

21 lines (17 loc) · 482 Bytes
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: Compiler Error C2516
Compiler Error C2516
11/04/2016
C2516
C2516
cd3accc1-0179-4a13-9587-616908c4ad1d

Compiler Error C2516

'name' : is not a legal base class

The class is derived from a type name defined by a typedef statement.

The following sample generates C2516:

// C2516.cpp
typedef unsigned long ulong;
class C : public ulong {}; // C2516