update NOTICE and LICENSE
[nit.git] / tests / base_isa_cast.nit
index 9a0adc5..e88a015 100644 (file)
@@ -20,13 +20,13 @@ class A
        init do end
 end
 class B
-special A
-       meth foo do 0.output
+       super A
+       fun foo do 0.output
        init do end
 end
 class C
-special B
-       meth bar do 1.output
+       super B
+       fun bar do 1.output
        init do end
 end