Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
'name' : reference to reference is illegal
This error may be fixed by using pointer syntax and declaring a reference to a pointer.
The following sample generates C2529:
// C2529.cpp
// compile with: /c
int i;
int &ri = i;
int &(&rri) = ri; // C2529