Skip to content

Latest commit

 

History

History
25 lines (21 loc) · 664 Bytes

compiler-error-c2467.md

File metadata and controls

25 lines (21 loc) · 664 Bytes
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: Compiler Error C2467
Compiler Error C2467
11/04/2016
C2467
C2467
f9ead270-5d0b-41cc-bdcd-586a647c67a7

Compiler Error C2467

illegal declaration of anonymous 'user-defined-type'

A nested user-defined type was declared. This is an error when compiling C source code with the ANSI compatibility option (/Za) enabled.

The following sample generates C2467:

//C2467.c
// compile with: /Za
int main() {
   struct X {
      union { int i; };   // C2467, nested declaration
   };
}