Partial merge of trunk progress. Some tests still fail.
[cython.git] / tests / errors / nogilcmeth.pyx
1 # mode: error
2
3 cdef class C:
4     cdef void f(self):
5         pass
6
7 _ERRORS = u"""
8 2:15: Previous declaration is here
9 4:4: Signature not compatible with previous declaration
10 """