Merge: doc: fixed some typos and other misc. corrections
[nit.git] / tests / error_superclass_superfluous.nit
1 import kernel
2
3 interface A
4 end
5
6 interface X
7 #alt3# super Object
8 end
9
10 interface B
11 super A
12 super X
13 end
14
15 interface C
16 super X
17 end
18
19 interface D
20 super B
21 super C
22 #alt1#super A
23 #alt2#super B
24 #alt4#super X
25 #alt5#super D
26 end