Condividi tramite


Avviso del compilatore (livello 1) C4393

'var': const non ha alcun effetto sul membro dati letterale; ignorato

È stato specificato anche un membro dati letterale come const. Poiché un membro dati letterale implica const, non è necessario aggiungere const alla dichiarazione.

L'esempio seguente genera l'errore C4393:

// C4393.cpp
// compile with: /clr /W1 /c
ref struct Y1 {
   literal const int staticConst = 10;   // C4393
   literal int staticConst2 = 10;   // OK
};