Cython has moved to github.

cython-devel

view tests/errors/e_ctypedefforward.pyx @ 2118:97069bd04411

Ticket #355 - ctypedef class ordering
author Robert Bradshaw <robertwb@math.washington.edu>
date Thu Sep 10 19:33:50 2009 -0700 (2 years ago)
parents 0610bab5f30b
children
line source
1 ctypedef struct Spam
3 cdef extern from *:
4 ctypedef struct Ham
6 ctypedef struct Spam:
7 int i
9 ctypedef struct Spam
10 _ERRORS = u"""
11 1:0: Forward-referenced type must use 'cdef', not 'ctypedef'
12 """