Skip to content

Latest commit

 

History

History
25 lines (21 loc) · 540 Bytes

compiler-error-c2574.md

File metadata and controls

25 lines (21 loc) · 540 Bytes
descriptiontitlems.datef1_keywordshelpviewer_keywordsms.assetid
Learn more about: Compiler Error C2574
Compiler Error C2574
11/04/2016
C2574
C2574
3e1c5c18-ee8b-4dbb-bfc0-d3b8991af71b

Compiler Error C2574

'destructor' : cannot be declared static

Neither destructors nor constructors can be declared static.

The following sample generates C2574:

// C2574.cpp// compile with: /cclassA { virtualstatic~A(); // C2574// try the following line instead// virtual ~A(); };
close