syntax: 'meth' -> 'fun', 'attr' -> 'var'
[nit.git] / tests / base_isa_cast.nit
index 9a0adc5..816cb39 100644 (file)
@@ -21,12 +21,12 @@ class A
 end
 class B
 special A
-       meth foo do 0.output
+       fun foo do 0.output
        init do end
 end
 class C
 special B
-       meth bar do 1.output
+       fun bar do 1.output
        init do end
 end