إشعار
يتطلب الوصول إلى هذه الصفحة تخويلاً. يمكنك محاولة تسجيل الدخول أو تغيير الدلائل.
يتطلب الوصول إلى هذه الصفحة تخويلاً. يمكنك محاولة تغيير الدلائل.
'type' : no members defined using this type
Remarks
An identifier resolving to a type name is in an aggregate declaration, but the compiler cannot declare a member.
Example
The following example generates C2208:
// C2208.cpp
class C {
C; // C2208
C(){} // OK
};