syntax: 'meth' -> 'fun', 'attr' -> 'var'
[nit.git] / tests / error_spe_proc.nit
index d946e44..5a474df 100644 (file)
 # limitations under the License.
 
 class A
-meth toto do end
+fun toto do end
 end
 
 class B
 special A
-redef meth toto: Int do return 2end
+redef fun toto: Int do return 2end
 end