cleanup _ERRORS
[cython.git] / tests / errors / e_nogilcmeth.pyx
1 cdef class C:
2         cdef void f(self) nogil:
3                 pass
4
5 _ERRORS = u"""
6 2:6: Signature not compatible with previous declaration
7 2:12: Previous declaration is here
8 """