From e3dc3b21ff7e9819fc213090c798ec095c773f24 Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Fri, 5 Dec 2008 10:16:59 +0100 Subject: [PATCH] extended test case --- tests/run/inop.pyx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/run/inop.pyx b/tests/run/inop.pyx index 4f51ca5f..dccfe646 100644 --- a/tests/run/inop.pyx +++ b/tests/run/inop.pyx @@ -41,3 +41,7 @@ def j(b): cdef int result result = 2 in b return result + +def k(a): + cdef int result = a in [1,2,3,4] + return result -- 2.26.2