summaryrefslogtreecommitdiff
path: root/tests/run/varargdecl.pyx
blob: 1a46fceb513856b536735111f32e20609985646f (plain)
1
2
3
4
5
6
7
8
9
cdef grail(char *blarg, ...):
    pass

def test():
    """
    >>> test()
    """
    grail(b"test")
    grail(b"test", b"toast")