fix error on def-nogil functions
[cython.git] / tests / errors / e_cdef_missing_declarator.pyx
1 cdef int
2
3 cdef extern from *:
4         void f(int)
5 _ERRORS = u"""
6 1:8: Empty declarator
7 """