misc/vim: inform the user when no results are found
[nit.git] / tests / base_var_type_evolution_null.nit
index 15012e7..146445e 100644 (file)
@@ -20,7 +20,7 @@ class A
 end
 
 class B
-special A
+       super A
 end
 
 fun rand: Bool do return true
@@ -33,7 +33,7 @@ fun eat_b(b: B) do 'B'.output
 var a: nullable Object = null
 a = new B
 if rand then
-       a = null #!alt1#
+       a = null #alt1#
        #alt2#a = new A
        #alt3#a = new B
 end