update NOTICE and LICENSE
[nit.git] / tests / module_2.nit
index 5c42c49..e73f7f6 100644 (file)
 import module_1
 
 redef class A # class 3
-   redef meth a13
+   redef fun a13
    do
           print(13)
           print(3)
    end
-   redef meth a123
+   redef fun a123
    do
           print(123)
           print(3)
@@ -34,8 +34,8 @@ end
 # B is class 4
 
 class C # class 5
-special B
-   redef meth all25
+       super B
+   redef fun all25
    do
           print(250)
           print(5)