update NOTICE and LICENSE
[nit.git] / tests / error_prop_glob.nit
index 2065003..e6b29d2 100644 (file)
@@ -20,12 +20,12 @@ class Object
 end
 
 class A
-       meth toto do end
+       fun toto do end
 end
 class B
-       meth toto do end
+       fun toto do end
 end
 class C
-special A
-special B
+       super A
+       super B
 end