summaryrefslogtreecommitdiffstats
path: root/src/errors.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2023-01-11 17:59:38 +0000
committerBram Moolenaar <Bram@vim.org>2023-01-11 17:59:38 +0000
commit6aa0937fb88001a5ea18e732aad4c625e9b2baeb (patch)
tree666baf14dcbf1fcc229d9196c3931c20f766e27d /src/errors.h
parent58b40092e616585a763cf4d214d47ccd9167d6f7 (diff)
patch 9.0.1179: not all errors around inheritance are testedv9.0.1179
Problem: Not all errors around inheritance are tested. Solution: Add more tests. Fix uncovered problems.
Diffstat (limited to 'src/errors.h')
-rw-r--r--src/errors.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/errors.h b/src/errors.h
index 6fa1abb787..de1ae4bd03 100644
--- a/src/errors.h
+++ b/src/errors.h
@@ -3438,4 +3438,6 @@ EXTERN char e_super_must_be_followed_by_dot[]
INIT(= N_("E1356: \"super\" must be followed by a dot"));
EXTERN char e_using_super_not_in_class_function[]
INIT(= N_("E1357: Using \"super\" not in a class function"));
+EXTERN char e_using_super_not_in_child_class[]
+ INIT(= N_("E1358: Using \"super\" not in a child class"));
#endif