X-Git-Url: http://nitlanguage.org diff --git a/tests/error_inh_clash.nit b/tests/error_inh_clash.nit index b0eafbb..bc04cd4 100644 --- a/tests/error_inh_clash.nit +++ b/tests/error_inh_clash.nit @@ -15,6 +15,9 @@ # limitations under the License. class A -special Array[Int] -special Array[Char] + super Array[Int] + super Array[Char] end + +var a = new A +a.output