From 2ee410c30428d56878e6b42d2a76b85d44266a9f Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=A9mie=20Astor?= Date: Mon, 25 Apr 2022 22:08:57 +0200 Subject: [PATCH] :white_check_mark: Update tests --- tests/error/not_global_inside_global_class.gw | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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; } -- 2.43.0