X-Git-Url: http://nitlanguage.org diff --git a/tests/base_eq_null_notnull.nit b/tests/base_eq_null_notnull.nit index 67af307..ef08d2c 100644 --- a/tests/base_eq_null_notnull.nit +++ b/tests/base_eq_null_notnull.nit @@ -17,13 +17,12 @@ import end class Object - meth ==(o: nullable Object): Bool do return self is o - meth !=(o: nullable Object): Bool do return not (self == o) - meth output is intern + fun ==(o: nullable Object): Bool do return self is o + fun !=(o: nullable Object): Bool do return not (self == o) end class Bool - redef meth output is intern + fun output is intern end class A