Updated `tests/syntax_callref.nit`
[nit.git] / tests / error_prop_glob.nit
index 2065003..a96a09a 100644 (file)
 
 import end
 
-class Object
+interface 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