Merge: doc: fixed some typos and other misc. corrections
[nit.git] / tests / base_var_type_evolution_nullable.nit
index a8766fe..b0f26a4 100644 (file)
@@ -13,7 +13,7 @@
 # limitations under the License.
 
 import end
-class Object
+interface Object
        fun ==(o: nullable Object): Bool do return self.is_same_instance(o)
        fun !=(o: nullable Object): Bool do return not self == o
        fun is_same_instance(o: nullable Object): Bool is intern