summaryrefslogtreecommitdiff
path: root/tests/errors/e_cdef_in_py.py
blob: cf705ece0e816c69f06baf332349fecc51ea5944 (plain)
1
2
3
4
5
6
7
8
9
# mode: error

def func():
    cdef int i


_ERRORS = """
4:4: The 'cdef' keyword is only allowed in Cython files (pyx/pxi/pxd)
"""