syntax: 'meth' -> 'fun', 'attr' -> 'var'
[nit.git] / tests / test_super.nit
index ea2d8ee..2f8d427 100644 (file)
@@ -17,7 +17,7 @@
 import kernel
 
 class A
-       meth foo
+       fun foo
        do
                0.output
        end
@@ -25,7 +25,7 @@ end
 
 class B
 special A
-       redef meth foo
+       redef fun foo
        do
                1.output
                super