summaryrefslogtreecommitdiff
path: root/tests/errors/missing_self_in_cpdef_method_T165.pyx
blob: 89763cd2a0d8a41f0c77791bdda268f786f4fdb3 (plain)
1
2
3
4
5
6
7
8
9
10
# ticket: t165
# mode: error

cdef class A:
    cpdef a(int not_self):
        pass

_ERRORS = u"""
5:10: Self argument (int) of C method 'a' does not match parent type (A)
"""