update NOTICE and LICENSE
[nit.git] / tests / base_var_type_evolution.nit
index f62d58e..38e6caf 100644 (file)
@@ -21,12 +21,12 @@ class A
 end
 
 class B
-special A
+       super A
        fun b do 'B'.output
 end
 
 class C
-special A
+       super A
        fun c do 'C'.output
 end