description | title | ms.date | f1_keywords | helpviewer_keywords | ms.assetid | ||
---|---|---|---|---|---|---|---|
Learn more about: Compiler Error C2502 | Compiler Error C2502 | 11/04/2016 |
|
| affa0b86-15fc-4e17-b7f2-6aad4a3771c4 |
'identifier' : too many access modifiers on the base class
The base class has more than one access modifier. Only one access modifier (public
, private
, or protected
) is allowed.
The following sample generates C2502:
// C2502.cpp// compile with: /cclassA { }; classB { }; classC : privatepublic A { }; // C2502// OKclassD : privateA {}; classE : publicA, privateB {};