description | title | ms.date | f1_keywords | helpviewer_keywords | ms.assetid | ||
---|---|---|---|---|---|---|---|
Learn more about: Compiler Warning (level 3) C4538 |
Compiler Warning (level 3) C4538 |
11/04/2016 |
|
|
747e3d51-b6d0-41c1-a726-7af3253b59d7 |
'type' : const/volatile qualifiers on this type are not supported
A qualifier keyword was applied to an array incorrectly. For more information, see array.
The following sample generates C4538:
// C4538.cpp
// compile with: /clr /W3 /LD
const array<int> ^f1(); // C4538
array<const int> ^f2(); // OK