Skip to content

Latest commit

 

History

History
25 lines (20 loc) · 643 Bytes

compiler-error-c3669.md

File metadata and controls

25 lines (20 loc) · 643 Bytes
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: Compiler Error C3669
Compiler Error C3669
11/04/2016
C3669
C3669
be9c7ae4-e96f-47ab-922a-39a3537d5ca6

Compiler Error C3669

'member' : override specifier 'override' not allowed on static member functions or constructors

An override was specified incorrectly. For more information, see Explicit Overrides.

Example

The following sample generates C3669.

// C3669.cpp
// compile with: /clr
public ref struct R {
   R() override {}   // C3669
};