description | title | ms.date | f1_keywords | helpviewer_keywords | ms.assetid | ||
---|---|---|---|---|---|---|---|
Learn more about: Compiler Error C2518 | Compiler Error C2518 | 11/04/2016 |
|
| a7895b47-da90-4851-ac97-18e81479595a |
keyword 'keyword' illegal in base class list; ignored
The keywords class
and struct
should not appear in a base class list.
The following sample generates C2518:
// C2518.cpp// compile with: /cclassB {}; classC : publicclass B {}; // C2518classD: publicB {}; // OK