Skip to content

Commit

Permalink
Fixed the Sub class
Browse files Browse the repository at this point in the history
  • Loading branch information
deadmarshal committed Apr 30, 2024
1 parent e433a1b commit daf75b7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ BEGIN
TYPE
Super = OBJECT METHODS m1() := P1 END;
Sub = OBJECT METHODS m2() := P2 END;
Sub = Super OBJECT METHODS m2() := P2 END;
VAR
super := NEW(Super);
sub := NEW(Sub);
Expand Down

0 comments on commit daf75b7

Please sign in to comment.