إشعار
يتطلب الوصول إلى هذه الصفحة تخويلاً. يمكنك محاولة تسجيل الدخول أو تغيير الدلائل.
يتطلب الوصول إلى هذه الصفحة تخويلاً. يمكنك محاولة تغيير الدلائل.
'token' : illegal following '~' (expected identifier)
Remarks
The token is not an identifier.
Example
The following example generates C2611:
// C2611.cpp
// compile with: /c
class C {
C::~operator int(); // C2611
~C(); // OK
};