Partager via


Erreur du compilateur C3126

ne peut pas définir une union 'union' à l’intérieur du type managé 'type'

Une union ne peut pas être définie à l’intérieur d’un type managé.

L’exemple suivant génère l’erreur C3126 :

// C3126_2.cpp
// compile with: /clr /c
ref class Test
{
   union x
   {   // C3126
      int a;
      int b;
   };
};