fix #675: make 'by' a non-keyword also in .pyx files
[cython.git] / tests / compile / ctypedefstruct.pyx
1 # mode: compile
2
3 ctypedef struct order:
4     int spam
5     int eggs
6
7 cdef order order1
8
9 order1.spam = 7
10 order1.eggs = 2
11
12 ctypedef struct linked:
13     int a
14     linked *next