From 2a11ce589dce778478ff178440029847bebb38f4 Mon Sep 17 00:00:00 2001 From: Lisandro Dalcin Date: Sat, 24 Oct 2009 19:18:52 -0200 Subject: [PATCH] fix testcase --- tests/compile/cstructreturn.pyx | 3 +++ 1 file changed, 3 insertions(+) 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() -- 2.26.2