de6c294a3d055bd7b6f56dea3ea27d1a3748424b
[cython.git] / tests / errors / e_notnone.pyx
1 cdef extern class Grail.Shrubbery
2
3 cdef void spam(Shrubbery sh not None):
4         pass
5 _ERRORS = u"""
6 3:15: 'not None' only allowed in Python functions
7 """