From: Jérémie Astor Date: Mon, 25 Apr 2022 20:08:57 +0000 (+0200) Subject: :white_check_mark: Update tests X-Git-Tag: nightly~275^2~43 X-Git-Url: http://10.10.0.4:5575/?a=commitdiff_plain;h=2ee410c30428d56878e6b42d2a76b85d44266a9f;p=gwion.git :white_check_mark: Update tests --- diff --git a/tests/error/not_global_inside_global_class.gw b/tests/error/not_global_inside_global_class.gw index 6a5a8f19..86eea4db 100644 --- a/tests/error/not_global_inside_global_class.gw +++ b/tests/error/not_global_inside_global_class.gw @@ -1,7 +1,8 @@ #! [contains] non-global type in a global class -class State{} +class C {} +class global State{} class global States extends State[16] { - var State current; + var C current; }