forked from M-Labs/artiq
16 lines
251 B
Python
16 lines
251 B
Python
|
# RUN: %python -m artiq.compiler.testbench.jit %s
|
||
|
# REQUIRES: exceptions
|
||
|
|
||
|
def f():
|
||
|
try:
|
||
|
1/0
|
||
|
except ValueError:
|
||
|
# CHECK-NOT-L: FAIL
|
||
|
print("FAIL")
|
||
|
|
||
|
try:
|
||
|
f()
|
||
|
except ZeroDivisionError:
|
||
|
# CHECK-L: OK
|
||
|
print("OK")
|