update NOTICE and LICENSE
[nit.git] / tests / base_classid.nit
index 5722f61..df23c80 100644 (file)
@@ -21,8 +21,8 @@ class A
 end
 
 class B
-special A
-       meth unreasheable
+       super A
+       fun unreasheable
        do
                var a: A
                a = new B
@@ -32,7 +32,7 @@ special A
 end
 
 class C
-special A
+       super A
        init do end
 end