Merged pull request #12 from bhy/T423.
[cython.git] / tests / compile / jiba6.pyx
1 # mode: compile
2
3 cdef extern from "string.h":
4     void memcpy(void* des, void* src, int size)
5
6 cdef void f():
7     cdef float f1[3]
8     cdef float* f2
9     f2 = f1 + 1
10     memcpy(f1, f2, 1)
11
12 f()