Muistiinpano
Tälle sivulle pääsy edellyttää valtuutusta. Voit yrittää kirjautua sisään tai vaihtaa hakemistoja.
Tälle sivulle pääsy edellyttää valtuutusta. Voit yrittää vaihtaa hakemistoja.
'member' : improper initializer: this literal data member can only be initialized with 'nullptr'
Remarks
A literal data member was initialized incorrectly. See nullptr for more information.
Example
The following example generates C3896:
// C3896.cpp
// compile with: /clr /c
ref class R{};
value class V {
literal R ^ r = "test"; // C3896
literal R ^ r2 = nullptr; // OK
};