Additional failing test case

This commit is contained in:
Xinlong Hu
2025-07-03 16:27:59 -05:00
parent b6a1007a49
commit 93ee5cd830
+10
View File
@@ -424,6 +424,16 @@ def aa_TryExceptReturnMulti():
except b:
print(3)
def aa1_TryExceptReturnMulti():
try:
print(1)
return 2
except a:
print(2)
return 3
except b:
print(3)
def ab_TryExceptReturnNamed():
try:
print(1)