summaryrefslogtreecommitdiff
path: root/tests/errors/e_autotestdict.pyx
blob: 097b09fb2addaad122bef904c2cf7b1e82bd8085 (plain)
1
2
3
4
5
6
7
8
9
10
11
# mode: error

cimport cython

@cython.autotestdict(False)
def foo():
    pass

_ERRORS = u"""
5:0: The autotestdict compiler directive is not allowed in function scope
"""