컴파일러 오류 C3291
'default' : trivial 속성의 이름이 될 수 없습니다.
trivial 속성은 default
로 이름을 바꿀 수 없습니다. 자세한 내용은 property 를 참조하세요.
예시
다음 샘플에서는 C3291을 생성합니다.
// C3291.cpp
// compile with: /clr /c
ref struct C {
property System::String ^ default; // C3291
property System::String ^ Default; // OK
};