Merge + no need to cimport __cython__ any longer (sorry about non-isolated commit...)
[cython.git] / tests / errors / e_nogilcmeth.pyx
1 cdef class C:
2         cdef void f(self) nogil:
3                 pass
4
5 _ERRORS = u"""
6 /Local/Projects/D/Pyrex/Source/Tests/Errors3/e_nogilcmeth.pyx:2:6: Signature not compatible with previous declaration
7 /Local/Projects/D/Pyrex/Source/Tests/Errors3/e_nogilcmeth.pxd:2:12: Previous declaration is here
8 """