summaryrefslogtreecommitdiff
path: root/tests/run/pure_fused.pxd
blob: c00105087b7019ed8305800c9551f801a54db13e (plain)
1
2
3
4
5
6
7
8
9
cimport cython

ctypedef fused NotInPy:
    int
    float

cdef class TestCls:
    @cython.locals(loc = NotInPy)
    cpdef cpfunc(self, NotInPy arg)