metamodel: rename 'universal' to 'enum'
[nit.git] / tests / base_init_inherit4.nit
index 1fe6773..1ac2f5e 100644 (file)
@@ -39,8 +39,8 @@ interface N
 end
 
 class O
-special M
-special B
+       super M
+       super B
        redef fun foo
        do
                'o'.output
@@ -49,8 +49,8 @@ special B
 end
 
 class P
-special B
-special N
+       super B
+       super N
        redef fun foo
        do
                'p'.output
@@ -59,18 +59,18 @@ special N
 end
 
 class Q
-#alt0#special M
-#alt0#special B
-#alt0#special N
+       #alt0#super M
+       #alt0#super B
+       #alt0#super N
 
-#alt1#special O
-#alt1#special N
+       #alt1#super O
+       #alt1#super N
 
-#alt2#special M
-#alt2#special P
+       #alt2#super M
+       #alt2#super P
        
-#alt3#special O
-#alt3#special P
+       #alt3#super O
+       #alt3#super P
        redef fun foo
        do
                'q'.output