forked from M-Labs/artiq
10 lines
192 B
Python
10 lines
192 B
Python
# RUN: %python -m artiq.compiler.testbench.jit %s >%t
|
|
# RUN: OutputCheck %s --file-to-check=%t
|
|
# REQUIRES: exceptions
|
|
|
|
try:
|
|
1/0
|
|
except ZeroDivisionError:
|
|
# CHECK-L: OK
|
|
print("OK")
|