Fix doctesthack for cdef functions
[cython.git] / tests / errors / e_doctesthack.pyx
1 cimport cython
2
3 @cython.doctesthack(False)
4 def foo():
5     pass
6
7 _ERRORS = u"""
8 4:0: The doctesthack compiler directive is not allowed in function scope
9 """