misc/vim: inform the user when no results are found
[nit.git] / tests / base_var_type_evolution.nit
index f62d58e..76450c3 100644 (file)
@@ -21,12 +21,12 @@ class A
 end
 
 class B
-special A
+       super A
        fun b do 'B'.output
 end
 
 class C
-special A
+       super A
        fun c do 'C'.output
 end
 
@@ -67,7 +67,7 @@ if rand then
        a = new B
 else
        a = new C
-       abort#!alt6#
+       abort#alt6#
 end
 a.a
 a.b