using System; public class Test[T]{ private mutable data : array [2,T]; public this(mutable data : array [2,T]){ this.data = data; } } public class Program{ public static Main (mutable _args : array [string]) : void{ mutable _test = Test( array(2,2)); () } } /* BEGIN-OUTPUT END-OUTPUT */