다음을 통해 공유


컴파일러 오류 C2582

'type'에서 'function' 함수를 사용할 수 없습니다.

할당 연산자가 없는 개체에 할당하려고 했습니다.

다음 샘플에서는 C2582를 생성합니다.

// C2582.cpp
// compile with: /clr
using namespace System;

struct N {};
ref struct O {};
ref struct R {
   property O prop;   // C2582
   property O ^ prop2;   // OK
};

int main() {
   String ^ st1 = gcnew String("");
   ^st1 = gcnew String("");   // C2582
   st1 = "xxx";   // OK
}