Commit d84f7744 authored by Stefan Behnel's avatar Stefan Behnel

remove error test that is no longer an error

parent 46eb1a82
...@@ -14,7 +14,7 @@ ctypedef int[1] int_array ...@@ -14,7 +14,7 @@ ctypedef int[1] int_array
cdef int_array x, y cdef int_array x, y
x = y # error x = y # not an error anymore
cdef int_array *x_ptr = &x cdef int_array *x_ptr = &x
x_ptr[0] = y # error x_ptr[0] = y # error
...@@ -24,8 +24,8 @@ cdef class A: ...@@ -24,8 +24,8 @@ cdef class A:
def __init__(self): def __init__(self):
self.value = x # error self.value = x # error
_ERRORS = u""" _ERRORS = u"""
17:2: Assignment to non-lvalue 'x'
20:5: Assignment to non-lvalue of type 'int_array' 20:5: Assignment to non-lvalue of type 'int_array'
25:12: Assignment to non-lvalue of type 'int_array' 25:12: Assignment to non-lvalue of type 'int_array'
7:19: Cannot assign type 'char *' to 'int' 7:19: Cannot assign type 'char *' to 'int'
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment