More array declaration tests.
authorRobert Bradshaw <robertwb@math.washington.edu>
Fri, 19 Feb 2010 01:49:08 +0000 (17:49 -0800)
committerRobert Bradshaw <robertwb@math.washington.edu>
Fri, 19 Feb 2010 01:49:08 +0000 (17:49 -0800)
tests/compile/declarations.pyx

index 2d7efb02c650c62f367ad2c5ceeb00ec7776154e..cf6b5668e9a95d5f01371bfa43eb7f476de031c7 100644 (file)
@@ -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