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 / enumintcompat.pyx
Size: Mime:
# mode: compile

cdef enum E:
    a

cdef enum G:
    b

cdef void f():
    cdef E e=a
    cdef G g=b
    cdef int i, j=0
    cdef float f, h=0
    i = j | e
    i = e | j
    i = j ^ e
    i = j & e
    i = j << e
    i = j >> e
    i = j + e
    i = j - e
    i = j * e
    i = j / e
    i = j % e
    # f = j ** e # Cython prohibits this
    i = e + g
    f = h
    i = ~a
    i = -a

f()