mirror of https://github.com/m-labs/artiq.git
13 lines
212 B
Python
13 lines
212 B
Python
|
# RUN: %not %python -m artiq.compiler.testbench.jit %s >%t
|
||
|
# RUN: OutputCheck %s --file-to-check=%t
|
||
|
# REQUIRES: exceptions
|
||
|
|
||
|
def f():
|
||
|
try:
|
||
|
1/0
|
||
|
finally:
|
||
|
print("f-fin")
|
||
|
|
||
|
# CHECK-L: f-fin
|
||
|
f()
|