Merge: doc: fixed some typos and other misc. corrections
[nit.git] / tests / error_spe_proc.nit
index 5a474df..17949f3 100644 (file)
@@ -19,6 +19,9 @@ fun toto do end
 end
 
 class B
-special A
-redef fun toto: Int do return 2end
+       super A
+redef fun toto: Int do return 2 end
 end
+
+var b = new B
+b.toto.output