description | title | ms.date | f1_keywords | helpviewer_keywords | ms.assetid | ||
---|---|---|---|---|---|---|---|
Learn more about: Compiler Error C3539 | Compiler Error C3539 | 11/04/2016 |
|
| 34a33a0f-d1b6-498f-b312-ffad2d4799b3 |
'type': a template-argument cannot be a type that contains 'auto'
The indicated template argument type cannot contain a usage of the auto
keyword.
- Do not specify the template argument with the
auto
keyword.
The following example yields C3539.
// C3539.cpp// Compile with /Zc:autotemplate<classT> classC{}; intmain() { C<auto> c; // C3539return0; }