misc: update Changelog and NOTICE; remove BUGS and TODO
[nit.git] / tests / error_spe_param.nit
index 8bcd2f3..590802a 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
+redef fun toto(c: Object) do end
 end