Compilerfehler C3537
'type': Sie können nicht in einen Typ umwandeln, der "auto" enthält.
Sie können keine Variable in den angegebenen Typ umwandeln, da der Typ die auto
Schlüsselwort (keyword) enthält und die Standardoption "/Zc:auto compiler" wirksam ist.
Beispiel
Der folgende Code liefert C3537, da die Variablen in einen Typ umzuformen sind, der die auto
Schlüsselwort (keyword) enthält.
// C3537.cpp
// Compile with /Zc:auto
int main()
{
int value = 123;
auto(value); // C3537
(auto)value; // C3537
auto x1 = auto(value); // C3537
auto x2 = (auto)value; // C3537
auto x3 = static_cast<auto>(value); // C3537
return 0;
}