tests/sav: Update tests results
[nit.git] / tests / error_spe_param.nit
index 590802a..ac2b294 100644 (file)
@@ -20,6 +20,9 @@ fun toto(i: Int) do end
 end
 
 class B
-special A
+       super A
 redef fun toto(c: Object) do end
 end
+
+var b = new B
+b.toto(true)