Merge: doc: fixed some typos and other misc. corrections
[nit.git] / tests / base_as_notnull.nit
index eaeb85c..ecd5018 100644 (file)
 import kernel
 
 class A
-       var _i: Int
+       var i: Int
        redef fun output do _i.output
        init(i: Int) do _i = i
 end
 
 class B
-special A
+       super A
 end
 
 fun outa(a: A) do a.output