Merged pull request #12 from bhy/T423.
[cython.git] / tests / errors / cmethbasematch.pyx
index b0b1222e3bb6d65e6ef2f5451c027c63def8ea19..9e309f16f47e966559aeff969dd675c270943165 100644 (file)
@@ -1,3 +1,5 @@
+# mode: error
+
 cdef class C:
     cdef void f(self):
         pass
@@ -7,6 +9,6 @@ cdef class D(C):
         pass
 
 _ERRORS = u"""
-6: 9: Signature not compatible with previous declaration
-2: 9: Previous declaration is here
+8: 9: Signature not compatible with previous declaration
+4: 9: Previous declaration is here
 """