update NOTICE and LICENSE
[nit.git] / tests / base_isa_cast2.nit
index ca13a66..782277e 100644 (file)
@@ -21,8 +21,8 @@ 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
 var a0: A = new B