tools: remove all option to the compiler
[nit.git] / tests / base_init_linext2.nit
index 3eb7e62..2ecfb60 100644 (file)
@@ -33,11 +33,11 @@ class A
                c.output
                ' '.output
        end
-       meth work do '\n'.output
+       fun work do '\n'.output
 end
 
 class B
-special A
+       super A
        init initb do
                'B'.output
                '1'.output
@@ -63,7 +63,7 @@ special A
 end
 
 class C
-special A
+       super A
        init do
                'C'.output
                '1'.output
@@ -94,8 +94,8 @@ special A
 end
 
 class D
-special B
-special C
+       super B
+       super C
        init initd do
 #alt1#         super
                'D'.output