@@ -24,4 +24,21 @@ def f():
print("PASS 03")
assert True
-f()
+f()
+
+def f1():
+ try:
+ assert 1 + 2 == 3
+ a = {1: 2, 3: 4}
+ x = a[0]
+ except A:
+ print('<?>')
+ except B:
+try:
+ f1()
+except KeyError:
+ print("PASS 04")