update NOTICE and LICENSE
[nit.git] / tests / base_isa_cast3.nit
index 2f80084..f50fa77 100644 (file)
@@ -20,9 +20,9 @@ class A
        init do end
 end
 class B
-special A
-       meth foo(i: Int) do i.output
-       meth bar: Bool do return true
+       super A
+       fun foo(i: Int) do i.output
+       fun bar: Bool do return true
        init do end
 end