c3c62152cc0ec6f6e7b858aad49f79e2a1df4285
[cython.git] / tests / errors / e_cmethbasematch.pyx
1 cdef class C:
2         cdef void f(self):
3                 pass
4
5 cdef class D(C):
6         cdef void f(self, int x):
7                 pass
8 _ERRORS = u"""
9 /Local/Projects/D/Pyrex/Source/Tests/Errors3/e_cmethbasematch.pyx:6:6: Signature not compatible with previous declaration
10 /Local/Projects/D/Pyrex/Source/Tests/Errors3/e_cmethbasematch.pyx:2:6: Previous declaration is here
11 """