update NOTICE and LICENSE
[nit.git] / tests / base_virtual_type.nit
index 87dec55..db6a045 100644 (file)
@@ -19,16 +19,16 @@ import kernel
 class A
        type E: T
        
-       readable writable attr _e: nullable E = null 
+       readable writable var _e: nullable E = null 
 end
 
 class B
-special A
+       super A
        init do end
 end
 
 class T
-       meth foo do 0.output
+       fun foo do 0.output
        init do end
 end