misc/vim: inform the user when no results are found
[nit.git] / tests / base_virtual_type_self.nit
index 214fa90..cf1dbd9 100644 (file)
@@ -18,17 +18,17 @@ import kernel
 
 class A[E]
        type T: E
-       var _t: T
+       var t: T is noinit
        fun foo(t: T) do end
        fun foo2: T do return _t
        fun bar(t: A[T]) do end
        fun bar2: A[T] do return self
 
-       init do end
+
 end
 
 class B
-#alt3#special A[Int]
+       #alt3#super A[Int]
        type U: Int
 
        fun test