mirror of https://github.com/m-labs/artiq.git
9 lines
147 B
Python
9 lines
147 B
Python
|
# RUN: %python -m artiq.compiler.testbench.jit %s
|
||
|
# REQUIRES: exceptions
|
||
|
|
||
|
try:
|
||
|
1/0
|
||
|
except ZeroDivisionError:
|
||
|
# CHECK-L: OK
|
||
|
print("OK")
|