]> Nishi Git Mirror - gwion.git/commitdiff
:wrench: Fix tests
authorJérémie Astor <fennecdjay@gmail.com>
Sat, 12 Dec 2020 11:37:14 +0000 (12:37 +0100)
committerJérémie Astor <fennecdjay@gmail.com>
Sat, 12 Dec 2020 11:37:14 +0000 (12:37 +0100)
tests/error/union_array_empty.gw
tests/error/union_global_private.gw
tests/error/union_global_private_static.gw
tests/error/union_global_static.gw

index 3310091a299d74d85cf81aa93a0828077e516f4e..726d689163f308e2551e595652e85fbed71bbc92 100644 (file)
@@ -1,5 +1,5 @@
 #! [contains] must be defined with empty
 union U {
-  int i;
-  int array[4];
+  int i,
+  int array[4]
 };
index 1e17f48ad3d53eb79aec5af5f2f04c059e6dfc27..bfa9ce28ad57547c33d8337bda54dd41f8419d1e 100644 (file)
@@ -1,2 +1,2 @@
 #! [contains] can only be used at class scope.
-union static U { int i; };
+union static U { int i };
index 13e237e7004ec37c6576efab479999e621b7ea89..6f4ce434883a7d5887da32dfbeb0486a40be7792 100644 (file)
@@ -1,2 +1,2 @@
 #! [contains] can only be used at class scope.
-union private  static U { int i; };
+union private  static U { int i };
index 1e748934bd8ec3276d9442b3cb903bfe84edb60f..7fa677b67059830866e1281f638a581fae042125 100644 (file)
@@ -1,2 +1,2 @@
 #! [contains] can only be used at class scope.
-union private U { int i; };
+union private U { int i };