From 796db0411cc1a664e78a337b48c5bb1e77bc2101 Mon Sep 17 00:00:00 2001 From: Robert Bradshaw Date: Thu, 18 Feb 2010 17:49:08 -0800 Subject: [PATCH] More array declaration tests. --- tests/compile/declarations.pyx | 4 ++++ 1 file changed, 4 insertions(+) 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 -- 2.26.2