update NOTICE and LICENSE
[nit.git] / tests / base_isa.nit
index 0e41f32..6f7f087 100644 (file)
@@ -20,7 +20,7 @@ class O
 end
 
 class A
-special O
+       super O
        init do end
 end
 
@@ -28,9 +28,9 @@ class U
 end
 
 class B
-special A
-special U
-       redef init do end
+       super A
+       super U
+       init do end
 end
 
 var a: Object = new A