From: Lisandro Dalcin Date: Sat, 24 Oct 2009 21:18:52 +0000 (-0200) Subject: fix testcase X-Git-Tag: 0.12.alpha0~23 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=2a11ce589dce778478ff178440029847bebb38f4;p=cython.git fix testcase --- diff --git a/tests/compile/cstructreturn.pyx b/tests/compile/cstructreturn.pyx index 9ca00de4..cf2af37b 100644 --- a/tests/compile/cstructreturn.pyx +++ b/tests/compile/cstructreturn.pyx @@ -3,5 +3,8 @@ ctypedef struct Foo: cdef Foo f(): blarg = 1 + 2 + cdef Foo foo + foo.blarg = blarg + return foo f()