projects
/
cython.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e15eb56
)
extended test case
author
Stefan Behnel
<scoder@users.berlios.de>
Tue, 20 Oct 2009 19:06:22 +0000
(21:06 +0200)
committer
Stefan Behnel
<scoder@users.berlios.de>
Tue, 20 Oct 2009 19:06:22 +0000
(21:06 +0200)
tests/errors/e_cmp.pyx
patch
|
blob
|
history
diff --git
a/tests/errors/e_cmp.pyx
b/tests/errors/e_cmp.pyx
index 194703d4c584ed6cc145a4463b5a2a9057973747..2ec33a58f790b2b9822f9af96790f398d7edb5f1 100644
(file)
--- 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 *)