Merged pull request #12 from bhy/T423.
[cython.git] / tests / errors / cmethbasematch.pyx
old mode 100755 (executable)
new mode 100644 (file)
index b0b1222..9e309f1
@@ -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
 """