Switch to compiler-tester
[mono.git] / mcs / tests / gen-145.cs
diff --git a/mcs/tests/gen-145.cs b/mcs/tests/gen-145.cs
deleted file mode 100644 (file)
index 66a65dc..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-using System;
-public class Test<T>{
-        private T[,] data;
-        public Test(T[,] data){
-                this.data = data;
-        }
-}
-public class Program{
-        public static void Main(string[] args){
-                Test<double> test = new Test<double>(new double[2,2]);
-        }
-}     
-