Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Cython / tests / compile / funcptr.pyx
Size: Mime:
# mode: compile

cdef int grail():
    cdef int (*spam)()
    spam = &grail
    spam = grail
    spam()

ctypedef int funcptr_t()

cdef inline funcptr_t* dummy():
    return &grail