Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 453 Bytes

compiler-error-c2166.md

File metadata and controls

23 lines (19 loc) · 453 Bytes
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: Compiler Error C2166
Compiler Error C2166
11/04/2016
C2166
C2166
12789c3a-cc76-48bb-ae2e-64283e0964ed

Compiler Error C2166

l-value specifies const object

Code attempts to modify an item declared const.

The following sample generates C2166:

// C2166.cpp
int f();
int main() {
   ( (const int&) 1 ) = 5;   // C2166
}