description | title | ms.date | f1_keywords | helpviewer_keywords | ms.assetid | ||
---|---|---|---|---|---|---|---|
Learn more about: Compiler Error C3541 | Compiler Error C3541 | 11/04/2016 |
|
| 252cfd4c-5fd2-415e-a17d-6b0c254350db |
'type': typeid cannot be applied to a type that contains 'auto'
The typeid operator cannot be applied to the indicated type because it contains the auto
specifier.
The following example yields C3541.
// C3541.cpp// Compile with /Zc:auto #include<typeinfo>intmain() { auto x = 123; typeid(x); // OKtypeid(auto); // C3541return0; }