Errore del compilatore C3541
'tipo': typeid non può essere applicato a un tipo che contiene 'auto'
L'operatore typeid non può essere applicato al tipo indicato perché contiene l'identificatore auto.
Esempio
Nell'esempio seguente viene generato l'errore C3541.
// C3541.cpp
// Compile with /Zc:auto
#include <typeinfo>
int main() {
auto x = 123;
typeid(x); // OK
typeid(auto); // C3541
return 0;
}