2015-06-29 03:48:15 +08:00
|
|
|
# RUN: %python -m artiq.py2llvm.typing %s >%t
|
|
|
|
# RUN: OutputCheck %s --file-to-check=%t
|
|
|
|
|
|
|
|
# CHECK-L: Exception:<constructor Exception>
|
|
|
|
Exception
|
2015-06-29 05:31:06 +08:00
|
|
|
|
|
|
|
try:
|
|
|
|
pass
|
|
|
|
except Exception:
|
|
|
|
pass
|
|
|
|
except Exception as e:
|
|
|
|
# CHECK-L: e:Exception
|
|
|
|
e
|