merged in Vitja's tab removals
[cython.git] / tests / compile / funcptr.pyx
1 # mode: compile
2
3 cdef int grail():
4     cdef int (*spam)()
5     spam = &grail
6     spam = grail
7     spam()
8
9 ctypedef int funcptr_t()
10
11 cdef inline funcptr_t* dummy():
12     return &grail