From: Robert Bradshaw Date: Sat, 14 Mar 2009 20:47:25 +0000 (-0700) Subject: Fix changeset 1839, both typecasts are valid. X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=114e8f0def5f5b056911b4208d2a996791b6486f;p=cython.git Fix changeset 1839, both typecasts are valid. --- diff --git a/tests/compile/typecast.pyx b/tests/compile/typecast.pyx index 9551afb7..c9db7444 100644 --- a/tests/compile/typecast.pyx +++ b/tests/compile/typecast.pyx @@ -1,6 +1,7 @@ cdef void f(obj): cdef int i=0 cdef char *p + p = i p = &i obj = p p = obj