Compiler Error C3896
Visual Studio 2015
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 C3896.
member' : improper initializer: this literal data member can only be initialized with 'nullptr'
A literal data member was initialized incorrectly. See nullptr for more information.
The following sample generates C3896:
// C3896.cpp
// compile with: /clr /c
ref class R{};
value class V {
literal R ^ r = "test"; // C3896
literal R ^ r2 = nullptr; // OK
};
Show: