Correctly giving compiler errors on global/attribute buffers
[cython.git] / tests / errors / e_bufaccess.pyx
1 cdef object[int] buf
2 cdef class A:
3     cdef object[int] buf
4
5 def f():
6     cdef object[fakeoption=True] buf1
7     cdef object[int, -1] buf1b 
8     cdef object[ndim=-1] buf2
9     cdef object[int, 'a'] buf3
10     cdef object[int,2,3,4,5,6] buf4
11
12 _ERRORS = u"""
13 1:11: Buffer types only allowed as function local variables
14 3:15: Buffer types only allowed as function local variables
15 6:27: "fakeoption" is not a buffer option
16 7:22: "ndim" must be non-negative
17 8:15: "dtype" missing
18 9:21: "ndim" must be an integer
19 10:15: Too many buffer options
20 """
21