Merged pull request #12 from bhy/T423.
[cython.git] / tests / errors / e_badfuncargtype.pyx
index e6c37439ac875643bd12732de459269bc88cc2a8..cece614b724388e57c9987da9f9226fb14bab889 100644 (file)
@@ -8,7 +8,7 @@ cdef int tomato(Spam s):             # incomplete type
        pass
 
 _ERRORS = u"""
-3:21: Use spam() rather than spam(void) to declare a function with no arguments.
-4:29: Use spam() rather than spam(void) to declare a function with no arguments.
-5:16: Argument type 'Spam' is incomplete
+5:21: Use spam() rather than spam(void) to declare a function with no arguments.
+6:29: Use spam() rather than spam(void) to declare a function with no arguments.
+7:16: Argument type 'Spam' is incomplete
 """