Skip to content
Snippets Groups Projects
Commit 1d9e3c25 authored by pycsham's avatar pycsham
Browse files

fixing abstract method inheritance issue

parent 65f11519
No related branches found
No related tags found
No related merge requests found
......@@ -156,7 +156,7 @@ class ClassNode(ClassInterNode):
# 10. A class that contains (declares or inherits) any abstract methods must be abstract.
for con in contains:
if 'abstract' in con.mods and 'abstract' not in self.mods:
if ('abstract' in con.mods or not con.body) and 'abstract' not in self.mods:
raise Exception("ERROR: Non-abstract Class '{}' contains an abstract method".format(self.name))
# hierarchy: string[]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment