Commit a7b398b1 authored by Robert Bradshaw's avatar Robert Bradshaw

Tests for #230

parent b51cf45c
cdef class A:
cpdef foo(self)
cdef class B(A):
cpdef foo(self)
class A:
def foo(self):
return "A"
class B(A):
def foo(self):
return "B"
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment