Commit de6a1bf3 authored by Lisandro Dalcin's avatar Lisandro Dalcin

fix typecast testcase, int and pointer have different sizes in 64 bits

parent fe2422bb
cdef void f(obj):
cdef int i=0
cdef char *p
p = <char *>i
p = <char *>&i
obj = <object>p
p = <char *>obj
......
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