From 93ee5cd830879e544cb18529846ee906c7d11358 Mon Sep 17 00:00:00 2001 From: Xinlong Hu <118075581+XinlongCS@users.noreply.github.com> Date: Thu, 3 Jul 2025 16:27:59 -0500 Subject: [PATCH] Additional failing test case --- test/TryExcept.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/test/TryExcept.py b/test/TryExcept.py index 94cd00e..04b0f42 100644 --- a/test/TryExcept.py +++ b/test/TryExcept.py @@ -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)