From: Robert Bradshaw Date: Fri, 19 Feb 2010 01:49:08 +0000 (-0800) Subject: More array declaration tests. X-Git-Tag: 0.13.beta0~340^2~3 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=796db0411cc1a664e78a337b48c5bb1e77bc2101;p=cython.git More array declaration tests. --- diff --git a/tests/compile/declarations.pyx b/tests/compile/declarations.pyx index 2d7efb02..cf6b5668 100644 --- a/tests/compile/declarations.pyx +++ b/tests/compile/declarations.pyx @@ -11,6 +11,10 @@ cdef extern int (*iapfn())[5] cdef extern char *(*cpapfn())[5] cdef extern int fnargfn(int ()) +cdef extern int ia[] +cdef extern int iaa[][3] +cdef extern int a(int[][3], int[][3][5]) + cdef void f(): cdef void *p=NULL global ifnp, cpa