Commit e640b5ef authored by Dag Sverre Seljebotn's avatar Dag Sverre Seljebotn

Testcase for #245

parent 8c975f94
typedef struct {
int x
} MyStruct;
cimport crashT245_pxd
"""
>>> f()
{'x': 1}
"""
def f():
cdef crashT245_pxd.MyStruct s
s.x = 1
print s
cdef extern from "crashT245.h":
ctypedef struct MyStruct:
int x
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