Remove trailing whitespace.
[cython.git] / tests / compile / cenum.pyx
1 cdef enum Spam:
2     a
3     b, c,
4     d, e, f
5     g = 42
6
7 cdef void eggs():
8     cdef Spam s1, s2=a
9     cdef int i
10     s1 = s2
11     s1 = c
12     i = s1
13
14 eggs()