fix #675: make 'by' a non-keyword also in .pyx files
[cython.git] / tests / compile / johnson1.pyx
1 # mode: compile
2
3 ctypedef enum foo:
4     FOO
5
6 cdef void func():
7     cdef foo x
8     map = [FOO]
9     x = map[0]
10
11 func()