컴파일러 오류 C3891
'var': 리터럴 데이터 멤버를 l-value로 사용할 수 없습니다.
리터럴 변수는 const이며 선언에서 초기화된 후에는 해당 값을 변경할 수 없습니다.
다음 샘플에서는 C3891을 생성합니다.
// C3891.cpp
// compile with: /clr
ref struct Y1 {
literal int staticConst = 9;
};
int main() {
Y1::staticConst = 0; // C3891
}