update NOTICE and LICENSE
[nit.git] / tests / error_prop_loc.nit
index e0407ad..b74fc3c 100644 (file)
@@ -19,17 +19,17 @@ class Object
 end
 
 class A
-       meth toto do end
+       fun toto do end
 end
 class B
-special A
-       redef meth toto do end
+       super A
+       redef fun toto do end
 end
 class C
-special A
-       redef meth toto do end
+       super A
+       redef fun toto do end
 end
 class D
-special B
-special C
+       super B
+       super C
 end