summaryrefslogtreecommitdiff
path: root/tests/errors/compile_time_unraisable_T370.pyx
blob: d22f0c6c0a1b51dc7555ad5274dbdc4ac95cfa2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# ticket: t370
# mode: error

cdef int raiseit():
    raise IndexError

try: raiseit()
except: pass

_ERRORS = u"""
FIXME: provide a good error message here.
"""