src/doc: clean signature HTML output with `html_signature` and `html_short_signature`
[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