Cython has moved to github.

cython

view tests/compile/ctypedefstruct.pyx @ 1383:92baafe0edf3

Fix gcc crash on recursive typedef struct
Won't break existing code, only makes bad code compile now.
author Robert Bradshaw <robertwb@math.washington.edu>
date Tue Nov 25 14:04:41 2008 -0800 (3 years ago)
parents 612957ef6e8f
children
line source
1 ctypedef struct order:
2 int spam
3 int eggs
5 cdef order order1
7 order1.spam = 7
8 order1.eggs = 2
10 ctypedef struct linked:
11 int a
12 linked *next