Avviso del compilatore (livello 1) C4224
estensione non standard usata: il parametro formale 'identifier' è stato definito in precedenza come tipo
L'identificatore è stato usato in precedenza come .typedef
In questo modo viene generato un avviso con la compatibilità ANSI (/Za).
Esempio
// C4224.cpp
// compile with: /Za /W1 /LD
typedef int I;
void func ( int I ); // C4224