1# ticket: 165
2# mode: error
3
4cdef class A:
5    cpdef a(int not_self):
6        pass
7
8_ERRORS = u"""
95:10: Self argument (int) of C method 'a' does not match parent type (A)
10"""
11