Merge docs repo
[cython.git] / tests / errors / 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
9 _ERRORS = u"""
10 6: 9: Signature not compatible with previous declaration
11 2: 9: Previous declaration is here
12 """