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.
'var' : a literal data member cannot be used as a l-value
A literal variable is const, and its value cannot be changed after it is initialized in the declaration.
The following sample generates C3891:
// C3891.cpp
// compile with: /clr
ref struct Y1 {
literal int staticConst = 9;
};
int main() {
Y1::staticConst = 0; // C3891
}