Test for bad buffer types.
authorRobert Bradshaw <robertwb@math.washington.edu>
Sun, 3 Oct 2010 06:49:58 +0000 (23:49 -0700)
committerRobert Bradshaw <robertwb@math.washington.edu>
Sun, 3 Oct 2010 06:49:58 +0000 (23:49 -0700)
tests/errors/e_bufaccess.pyx

index 0281b67b675f1fb1dc6cabdce23eb37f49bd7200..e6f9e39c68f4e2454703478c1cb07b9617754ca8 100644 (file)
@@ -10,6 +10,7 @@ def f():
     cdef object[int,2,3,4,5,6] buf4
     cdef object[int, 2, 'foo'] buf5
     cdef object[int, 2, well] buf6
+    cdef object[x, 1] buf0
 
 _ERRORS = u"""
 1:17: Buffer types only allowed as function local variables
@@ -23,5 +24,6 @@ _ERRORS = u"""
 #10:15: Too many buffer options
 #11:24: Only allowed buffer modes are "full" or "strided" (as a compile-time string)
 #12:28: Only allowed buffer modes are "full" or "strided" (as a compile-time string)
+#13:17: Invalid type.
 #"""