#! [contains] must be defined with empty
union U {
- int i;
- int array[4];
+ int i,
+ int array[4]
};
#! [contains] can only be used at class scope.
-union static U { int i; };
+union static U { int i };
#! [contains] can only be used at class scope.
-union private static U { int i; };
+union private static U { int i };
#! [contains] can only be used at class scope.
-union private U { int i; };
+union private U { int i };