Commit fd318ca5 authored by Matěj Laitl's avatar Matěj Laitl

Add testcase for cimport+alias+subclass bug

The test may require moving into tests/compile after the bug is fixed.
parent add80913
cimport cimport_alias_subclass_helper as cash
cdef class Derived(cash.Base):
cdef bint foo(self):
print "Hello"
def run():
"""
>>> run()
Hello
"""
d = Derived()
d.foo()
cdef class Base:
cdef bint foo(self)
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