Merge: doc: fixed some typos and other misc. corrections
[nit.git] / tests / error_spe_ret.nit
index 313c2ce..e4330ff 100644 (file)
@@ -19,6 +19,9 @@ fun toto: Int do return 1 end
 end
 
 class B
-special A
+       super A
 redef fun toto: Char do return 'a' end
 end
+
+var b = new B
+b.toto.output