Fix error line numbers (due to tag additions).
[cython.git] / tests / errors / cmethbasematch.pyx
1 # mode: error
2
3 cdef class C:
4     cdef void f(self):
5         pass
6
7 cdef class D(C):
8     cdef void f(self, int x):
9         pass
10
11 _ERRORS = u"""
12 8: 9: Signature not compatible with previous declaration
13 4: 9: Previous declaration is here
14 """