support for lambda inside of generator expressions
[cython.git] / tests / compile / excvaldecl.pyx
1 # mode: compile
2
3 cdef int spam() except 42:
4     pass
5
6 cdef float eggs() except 3.14:
7     pass
8
9 cdef char *grail() except NULL:
10     pass
11
12 cdef int tomato() except *:
13     pass
14
15 cdef int brian() except? 0:
16     pass
17
18 cdef int silly() except -1:
19     pass
20
21 spam()
22 eggs()
23 grail()
24 tomato()
25 brian()
26 silly()