extended test case
authorStefan Behnel <scoder@users.berlios.de>
Tue, 20 Oct 2009 19:06:22 +0000 (21:06 +0200)
committerStefan Behnel <scoder@users.berlios.de>
Tue, 20 Oct 2009 19:06:22 +0000 (21:06 +0200)
tests/errors/e_cmp.pyx

index 194703d4c584ed6cc145a4463b5a2a9057973747..2ec33a58f790b2b9822f9af96790f398d7edb5f1 100644 (file)
@@ -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 *)