summaryrefslogtreecommitdiff
path: root/testsuite/python3.py
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/python3.py')
-rw-r--r--testsuite/python3.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/testsuite/python3.py b/testsuite/python3.py
index 709695a..959956e 100644
--- a/testsuite/python3.py
+++ b/testsuite/python3.py
@@ -9,6 +9,8 @@ def foo(x: int) -> int:
# Annotated variables #575
CONST: int = 42
+match: int = 42
+case: int = 42
class Class: