From: Stefan Behnel Date: Tue, 20 Oct 2009 19:06:22 +0000 (+0200) Subject: extended test case X-Git-Tag: 0.13.beta0~2^2~121^2~5 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=8924c1465c4c14d35a0651805101f5b44b62f9ed;p=cython.git extended test case --- diff --git a/tests/errors/e_cmp.pyx b/tests/errors/e_cmp.pyx index 194703d4..2ec33a58 100644 --- a/tests/errors/e_cmp.pyx +++ b/tests/errors/e_cmp.pyx @@ -9,6 +9,8 @@ cdef void foo(): bool = int1 == ptr2 # error bool = ptr2 == ptr3 # error + bool = 1 in 2 in 3 + _ERRORS = u""" 8:13: Invalid types for '==' (int *, Python object) 9:13: Invalid types for '==' (int, char *)