update NOTICE and LICENSE
[nit.git] / tests / error_inh_clash.nit
index b0eafbb..f9e31b5 100644 (file)
@@ -15,6 +15,6 @@
 # limitations under the License.
 
 class A
-special Array[Int]
-special Array[Char]
+       super Array[Int]
+       super Array[Char]
 end