summaryrefslogtreecommitdiff
path: root/testsuite/python38.py
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/python38.py')
-rw-r--r--testsuite/python38.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/testsuite/python38.py b/testsuite/python38.py
index 8bf0d4d..faf9aa7 100644
--- a/testsuite/python38.py
+++ b/testsuite/python38.py
@@ -53,3 +53,6 @@ if x := 2:
#: E221:1:6 E221:1:19
if (x := 1) == (y := 2):
pass
+#: E741
+while l := 1:
+ pass