1
2ctypedef char* LPSTR
3
4def typedef_delegation():
5    """
6    >>> typedef_delegation()
7    """
8    cdef LPSTR c_str = b"ascii"
9    assert <bytes>c_str == b"ascii"
10