إشعار
يتطلب الوصول إلى هذه الصفحة تخويلاً. يمكنك محاولة تسجيل الدخول أو تغيير الدلائل.
يتطلب الوصول إلى هذه الصفحة تخويلاً. يمكنك محاولة تغيير الدلائل.
'name' : reference to reference is illegal
Remarks
This error may be fixed by using pointer syntax and declaring a reference to a pointer.
Example
The following example generates C2529:
// C2529.cpp
// compile with: /c
int i;
int &ri = i;
int &(&rri) = ri; // C2529