1cimport cython
2
3@cython.locals(egg=double)
4cdef foo(egg)
5
6@cython.locals(egg=cython.double)
7cdef foo_defval(egg=*)
8
9@cython.locals(egg=cython.bint, v=cython.int)
10cpdef cpfoo(egg=*)
11