Partial merge of trunk progress. Some tests still fail.
[cython.git] / tests / errors / e_cmethbasematch.pyx
index 271421dc247a3d4d1c394302c65a3b099791f13c..24afed5c3012778d773e9f5e814bcd5ea06d0be0 100644 (file)
@@ -1,3 +1,5 @@
+# mode: error
+
 cdef class C:
        cdef void f(self):
                pass
@@ -6,6 +8,6 @@ cdef class D(C):
        cdef void f(self, int x):
                pass
 _ERRORS = u"""
-6:1: Signature not compatible with previous declaration
-2:1: Previous declaration is here
+8:1: Signature not compatible with previous declaration
+4:1: Previous declaration is here
 """