2010-04-15 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / gtest-145.cs
blob66a65dc17a378a86376de8e7a355cbb3c7f21ad8
1 using System;
2 public class Test<T>{
3 private T[,] data;
4 public Test(T[,] data){
5 this.data = data;
8 public class Program{
9 public static void Main(string[] args){
10 Test<double> test = new Test<double>(new double[2,2]);