forked from M-Labs/artiq
1
0
Fork 0
artiq/lit-test/test/exceptions/catch.py

9 lines
147 B
Python
Raw Normal View History

2015-07-27 14:10:20 +08:00
# RUN: %python -m artiq.compiler.testbench.jit %s
# REQUIRES: exceptions
try:
1/0
except ZeroDivisionError:
# CHECK-L: OK
print("OK")