24afed5c3012778d773e9f5e814bcd5ea06d0be0
[cython.git] / tests / errors / e_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 _ERRORS = u"""
11 8:1: Signature not compatible with previous declaration
12 4:1: Previous declaration is here
13 """