summaryrefslogtreecommitdiffstats
path: root/src/errors.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2023-01-14 13:12:06 +0000
committerBram Moolenaar <Bram@vim.org>2023-01-14 13:12:06 +0000
commit24a8d06d7f4db0865f374ced2f4d4b57cbc5b9e4 (patch)
tree35fbe252c9cebe7cbddd33892e079f3966af402c /src/errors.h
parent034c350207931a7ff57c76536d4703f6da595919 (diff)
patch 9.0.1198: abstract class not supported yetv9.0.1198
Problem: Abstract class not supported yet. Solution: Implement abstract class and add tests.
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 de1ae4bd03..3b6307f0ba 100644
--- a/src/errors.h
+++ b/src/errors.h
@@ -3440,4 +3440,6 @@ 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"));
+EXTERN char e_cannot_define_new_function_in_abstract_class[]
+ INIT(= N_("E1359: Cannot define a \"new\" function in an abstract class"));
#endif