]> Nishi Git Mirror - gwion.git/commitdiff
:art: Access before storage modifier
authorJérémie Astor <astor.jeremie@wanadoo.fr>
Wed, 16 Sep 2020 21:46:44 +0000 (23:46 +0200)
committerJérémie Astor <astor.jeremie@wanadoo.fr>
Wed, 16 Sep 2020 21:46:44 +0000 (23:46 +0200)
ast
tests/error/named_union_global_private_static.gw
tests/error/union.gw
tests/error/union_global_private_static.gw
tests/tree/named_union_private_static.gw

diff --git a/ast b/ast
index 6d0584e789c5dbee8f2fc9b8fa95781d271c738c..04876e5a68a4547238939b32e245f40b66fce14a 160000 (submodule)
--- a/ast
+++ b/ast
@@ -1 +1 @@
-Subproject commit 6d0584e789c5dbee8f2fc9b8fa95781d271c738c
+Subproject commit 04876e5a68a4547238939b32e245f40b66fce14a
index 7f8c6c30f01bd6e5c97b57cea074216c45679189..3c59beeb715f387c1914903591de44da53e84c2a 100644 (file)
@@ -1,2 +1,2 @@
 #! [contains] can only be used at class scope.
-union static private { int i; } u;
+union private static { int i; } u;
index 0e4bd71ec29ee91db1380a314ea2cbd07c3722ea..7467b93237c95fa867c6f57932624b230424cafc 100644 (file)
@@ -1,5 +1,4 @@
 #! [contains] 
-union
-{
+union {
   one; two;
 };
index d1661269d4e367f97ce4905176643c3e925cf8b0..c9f8e009677804de45358c9bd64eec6805f72b43 100644 (file)
@@ -1,2 +1,2 @@
 #! [contains] can only be used at class scope.
-union static private  { int i; };
+union private  static { int i; };
index 3ac3f7ec4aba2ba770203d17d010bc554d858223..1e5983239c25b48e77e58f20dd2a0e2fc9e32189 100644 (file)
@@ -1,5 +1,5 @@
 class C {
-  union static private {
+  union private static {
     int i;
   } u;
   <<< this, " ", u, " ", this.u.i >>>;