mirror of https://github.com/m-labs/artiq.git
15 lines
332 B
Python
15 lines
332 B
Python
|
# RUN: %python -m artiq.py2llvm.typing +diag %s >%t
|
||
|
# RUN: OutputCheck %s --file-to-check=%t
|
||
|
|
||
|
try:
|
||
|
pass
|
||
|
# CHECK-L: ${LINE:+1}: error: this expression must refer to an exception constructor
|
||
|
except 1:
|
||
|
pass
|
||
|
|
||
|
try:
|
||
|
pass
|
||
|
# CHECK-L: ${LINE:+1}: error: cannot unify int(width='a) with Exception
|
||
|
except Exception as e:
|
||
|
e = 1
|