X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/7ae084aaa13b8c1b66410de44f0b9f86ab798c5c..14c76e89716b5b53c97ece80bb935ea956b7dd89:/tests/data/pep_572.py

diff --git a/tests/data/pep_572.py b/tests/data/pep_572.py
index 9e429f9..c6867f2 100644
--- a/tests/data/pep_572.py
+++ b/tests/data/pep_572.py
@@ -2,6 +2,8 @@
 (a := a)
 if (match := pattern.search(data)) is None:
     pass
+if match := pattern.search(data):
+    pass
 [y := f(x), y ** 2, y ** 3]
 filtered_data = [y for x in data if (y := f(x)) is None]
 (y := f(x))
@@ -41,3 +43,5 @@ foo(c=(b := 2), a=1)
 
 while x := f(x):
     pass
+while x := f(x):
+    pass