Skip to content

Latest commit

 

History

History
24 lines (20 loc) · 467 Bytes

compiler-error-c2106.md

File metadata and controls

24 lines (20 loc) · 467 Bytes
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: Compiler Error C2106
Compiler Error C2106
11/04/2016
C2106
C2106
d5c91a2e-04e4-4770-8478-788b98c52a53

Compiler Error C2106

'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
}