Made super mandatory. Everything extends Object

This commit is contained in:
macocianradu
2022-02-17 13:13:55 +01:00
parent 07d4cc73e0
commit 6005594afb
11 changed files with 149 additions and 81 deletions

View File

@@ -0,0 +1,20 @@
type A: <"description">
a int (1..1) <"A">
type B extending A: <"description">
b int (1..1) <"B">
type C extending A: <"description">
c int (1..1) <"C">
type D extending B: <"description">
d int (1..1) <"D">
type F extending B: <"description">
f int (1..1) <"F">
type G extending C: <"description">
g int (1..1) <"G">
type H extending C: <"description">
h int (1..1) <"H">