update NOTICE and LICENSE
[nit.git] / tests / base_isa_cast4.nit
index 9104a90..65ae3d6 100644 (file)
@@ -21,12 +21,12 @@ class A
 end
 
 class B
-special A
-       meth foo(i: Int) do i.output
+       super A
+       fun foo(i: Int) do i.output
        init do end
 end
 
-meth maybe: Bool do return true
+fun maybe: Bool do return true
 
 var a: A = new B