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 / run / ptr_warning_T714.pyx
Size: Mime:
# mode: run
# tag: werror
# ticket: 714

def test_ptr():
    """
    >>> test_ptr()
    123
    """
    cdef int a
    cdef int *ptr

    ptr = &a
    ptr[0] = 123
    return a