update NOTICE and LICENSE
[nit.git] / tests / error_spe_param2.nit
index 8f55b3d..b0d63ac 100644 (file)
 
 import kernel
 class A
-meth toto(i: Int) do end
+fun toto(i: Int) do end
 end
 
 class B
-special A
-redef meth toto(c: Char) do end
+       super A
+redef fun toto(c: Char) do end
 end