X-Git-Url: http://nitlanguage.org diff --git a/tests/error_inh_clash4.nit b/tests/error_inh_clash4.nit index 8f9928f..63d05e7 100644 --- a/tests/error_inh_clash4.nit +++ b/tests/error_inh_clash4.nit @@ -16,3 +16,6 @@ class A[E, F] super Array[E] super List[F] end + +var a = new A[Int, Int] +a.output