update NOTICE and LICENSE
[nit.git] / tests / test_super.nit
index ea2d8ee..1a0036f 100644 (file)
 import kernel
 
 class A
-       meth foo
+       fun foo
        do
                0.output
        end
 end
 
 class B
-special A
-       redef meth foo
+       super A
+       redef fun foo
        do
                1.output
                super