Skip to content

Latest commit

 

History

History
22 lines (18 loc) · 520 Bytes

compiler-error-c3050.md

File metadata and controls

22 lines (18 loc) · 520 Bytes
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: Compiler Error C3050
Compiler Error C3050
11/04/2016
C3050
C3050
ee090a0b-29cc-4215-a2f9-d82af79b8e82

Compiler Error C3050

'type1' : a ref class cannot inherit from 'type1'

System::ValueType cannot be a base class for a reference type.

The following sample generates C3050:

// C3050.cpp
// compile with: /clr /LD
ref struct X : System::ValueType {};   // C3050
ref struct Y {};   // OK