Partial merge of trunk progress. Some tests still fail.
[cython.git] / tests / errors / e_nogilcmeth.pyx
index 6f4cb6ee7bb876c3dd361aa0b748230c5117003a..5708bc6560c59d81a8ca96202d1b5ed00433aafd 100644 (file)
@@ -1,8 +1,10 @@
+# mode: error
+
 cdef class C:
        cdef void f(self) nogil:
                pass
 
 _ERRORS = u"""
-2:1: Signature not compatible with previous declaration
 2:12: Previous declaration is here
+4: 1: Signature not compatible with previous declaration
 """