fix #675: make 'by' a non-keyword also in .pyx files
[cython.git] / tests / compile / ewing8.pxd
1 cdef struct Foo
2 cdef class Blarg
3
4 ctypedef Foo FooType
5 ctypedef Blarg BlargType
6
7 cdef struct Foo:
8         FooType *f
9
10 cdef class Blarg:
11         cdef FooType *f
12         cdef BlargType b