summaryrefslogtreecommitdiff
path: root/tests/errors/missing_self_in_cpdef_method_T156.pyx
blob: 21241a2210f986afda2206ff392fbf8fb39158fb (plain)
1
2
3
4
5
6
7
8
9
10
# ticket: 156
# mode: error

cdef class B:
    cpdef b():
        pass

_ERRORS = u"""
5:10: C method has no self argument
"""