This commit is contained in:
blueloveTH 2024-06-07 01:08:51 +08:00
parent 97d6f384f4
commit 02d3512681
2 changed files with 2 additions and 2 deletions

View File

@ -35,4 +35,4 @@ assert sum == 5050
for i in range(4):
_ = 0
# if there is no op here, the block check will fail
while i: --i
while i: i-=1

View File

@ -66,7 +66,7 @@ assert f((
def f():
for i in range(4):
_ = 0
while i: --i
while i: i-=1
f()
# class A: a=b=1