summaryrefslogtreecommitdiff
path: root/tests/errors/e_cenum_with_type.pyx
blob: 43c0e08fcfe0809d7d8384613aa752a455cb6fa7 (plain)
1
2
3
4
5
6
7
8
# mode: error

cdef enum Spam(int):
    a, b

_ERRORS = u"""
3:14: Expected ':', found '('
"""