Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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
};
}