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.
The latest version of this topic can be found at Compiler Error C3539.
type': a template-argument cannot be a type that contains 'auto'
The indicated template argument type cannot contain a usage of the auto
keyword.
To correct this error
- Do not specify the template argument with the
auto
keyword.
Example
The following example yields C3539.
// C3539.cpp
// Compile with /Zc:auto
template<class T> class C{};
int main()
{
C<auto> c; // C3539
return 0;
}