]> Nishi Git Mirror - gwion.git/commitdiff
:art: Fix tests
authorJérémie Astor <fennecdjay@gmail.com>
Sat, 12 Dec 2020 12:57:57 +0000 (13:57 +0100)
committerJérémie Astor <fennecdjay@gmail.com>
Sat, 12 Dec 2020 12:57:57 +0000 (13:57 +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 726d689163f308e2551e595652e85fbed71bbc92..3310091a299d74d85cf81aa93a0828077e516f4e 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 bfa9ce28ad57547c33d8337bda54dd41f8419d1e..1e17f48ad3d53eb79aec5af5f2f04c059e6dfc27 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 6f4ce434883a7d5887da32dfbeb0486a40be7792..13e237e7004ec37c6576efab479999e621b7ea89 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 7fa677b67059830866e1281f638a581fae042125..1e748934bd8ec3276d9442b3cb903bfe84edb60f 100644 (file)
@@ -1,2 +1,2 @@
 #! [contains] can only be used at class scope.
-union private U { int i };
+union private U { int i; };