Compiler Error C3291

 

The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com.

The latest version of this topic can be found at Compiler Error C3291.

default' : cannot be the name of a trivial property

A trivial property cannot be named default. See property for more information.

The following sample generates C3291.

// C3291.cpp  
// compile with: /clr /c  
ref struct C {  
   property System::String ^ default;   // C3291  
   property System::String ^ Default;   // OK  
};  

Show: