misc/vim: inform the user when no results are found
[nit.git] / tests / base_virtual_type.nit
index ec68f06..277cc6d 100644 (file)
@@ -18,12 +18,12 @@ import kernel
 
 class A
        type E: T
-       
-       readable writable var _e: nullable E = null 
+
+       var e: nullable E = null is writable
 end
 
 class B
-special A
+       super A
        init do end
 end