summaryrefslogtreecommitdiff
path: root/tests/errors/cfunc_directive_in_pyclass.pyx
blob: bb12dc2713513042dc676b49ca67d9db8978f00f (plain)
1
2
3
4
5
6
7
8
9
10
11
# mode: error
import cython

class Pyclass(object):
    @cython.cfunc
    def bad(self):
        pass

_ERRORS = """
 6:4: cfunc directive is not allowed here
"""