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.
'operator' : left operand must be l-value
The operator must have an l-value as its left operand.
The following sample generates C2106:
// C2106.cpp
int main() {
int a;
1 = a; // C2106
a = 1; // OK
}