Add tags to test files.
[cython.git] / tests / errors / e_undefexttype.pyx
1 # mode: error
2
3 cdef class Spam
4 cdef extern class external.Eggs
5 _ERRORS = u"""
6 1:5: C class 'Spam' is declared but not defined
7 2:5: C class 'Eggs' is declared but not defined
8 """