Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 510 Bytes

compiler-error-c2208.md

File metadata and controls

23 lines (19 loc) · 510 Bytes
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: Compiler Error C2208
Compiler Error C2208
11/04/2016
C2208
C2208
9ae704bc-bf70-45f1-8e47-0470f21edd4e

Compiler Error C2208

'type' : no members defined using this type

An identifier resolving to a type name is in an aggregate declaration, but the compiler cannot declare a member.

The following sample generates C2208:

// C2208.cpp
class C {
   C;   // C2208
   C(){}   // OK
};