mirror of https://github.com/m-labs/artiq.git
17 lines
284 B
Python
17 lines
284 B
Python
|
# RUN: %not %python -m artiq.compiler.testbench.jit %s >%t
|
||
|
# RUN: OutputCheck %s --file-to-check=%t
|
||
|
# REQUIRES: exceptions
|
||
|
|
||
|
def f():
|
||
|
# CHECK-L: Uncaught ZeroDivisionError
|
||
|
# CHECK-L: at input.py:${LINE:+1}:
|
||
|
1/0
|
||
|
|
||
|
def g():
|
||
|
try:
|
||
|
f()
|
||
|
except:
|
||
|
raise
|
||
|
|
||
|
g()
|