update NOTICE and LICENSE
[nit.git] / tests / base_eq_null_notnull.nit
index b684a09..ef08d2c 100644 (file)
@@ -19,11 +19,10 @@ import end
 class Object
        fun ==(o: nullable Object): Bool do return self is o
        fun !=(o: nullable Object): Bool do return not (self == o)
-       fun output is intern
 end
 
 class Bool
-       redef fun output is intern
+       fun output is intern
 end
 
 class A