artiq/artiq/test/lit/exceptions/catch_all.py

15 lines
288 B
Python

# RUN: %python -m artiq.compiler.testbench.jit %s >%t
# RUN: OutputCheck %s --file-to-check=%t
# REQUIRES: exceptions
def catch(f):
try:
f()
except Exception as e:
print(e)
# CHECK-L: 8(0, 0, 0)
catch(lambda: 1/0)
# CHECK-L: 9(10, 1, 0)
catch(lambda: [1.0][10])