diff options
Diffstat (limited to 'modules/gdscript/tests/scripts/parser/features/nested_match.gd')
-rw-r--r-- | modules/gdscript/tests/scripts/parser/features/nested_match.gd | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/modules/gdscript/tests/scripts/parser/features/nested_match.gd b/modules/gdscript/tests/scripts/parser/features/nested_match.gd index aaddcc7e83..491d917a8e 100644 --- a/modules/gdscript/tests/scripts/parser/features/nested_match.gd +++ b/modules/gdscript/tests/scripts/parser/features/nested_match.gd @@ -8,11 +8,10 @@ func test(): 1234: print("2") match number: - 1234: - print("3") - continue + 4321: + print("Should not be printed") _: - print("Should also be printed") + print("3") match number: 1234: print("4") |