merge
[cython.git] / tests / errors / e_cenum.pyx
1 cdef enum Spam:
2         a, b, c
3
4 cdef void f():
5         global a
6         a = 42      # assignment to non-lvalue
7         
8 _ERRORS = u"""
9 /Local/Projects/D/Pyrex/Source/Tests/Errors2/e_cenum.pyx:6:3: Assignment to non-lvalue 'a'
10 """