syntax: 'meth' -> 'fun', 'attr' -> 'var'
[nit.git] / tests / error_spe_fun.nit
index 79ab213..c98cc5a 100644 (file)
 # limitations under the License.
 
 class A
-meth toto: Int do return 1 end
+fun toto: Int do return 1 end
 end
 
 class B
 special A
-redef meth toto do end
+redef fun toto do end
 end