update NOTICE and LICENSE
[nit.git] / tests / error_spe_param.nit
index 8bcd2f3..a3615ea 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: Object) do end
+       super A
+redef fun toto(c: Object) do end
 end