syntax: 'meth' -> 'fun', 'attr' -> 'var'
[nit.git] / tests / base_isa_cast3.nit
index 2f80084..533ad77 100644 (file)
@@ -21,8 +21,8 @@ class A
 end
 class B
 special A
-       meth foo(i: Int) do i.output
-       meth bar: Bool do return true
+       fun foo(i: Int) do i.output
+       fun bar: Bool do return true
        init do end
 end