Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 500 Bytes

compiler-error-c2624.md

File metadata and controls

23 lines (19 loc) · 500 Bytes
descriptiontitlems.datef1_keywordshelpviewer_keywordsms.assetid
Learn more about: Compiler Error C2624
Compiler Error C2624
11/04/2016
C2624
C2624
32f2ec15-a7cd-4049-a64b-131746d3152b

Compiler Error C2624

local classes cannot be used to declare 'extern' variables

A local class or structure cannot be used to declare extern variables.

The following sample generates C2624:

// C2624.cppintmain() { structC {}; extern C ac; // C2624 }
close