Switch to compiler-tester
[mono.git] / mcs / tests / gen-101.cs
diff --git a/mcs/tests/gen-101.cs b/mcs/tests/gen-101.cs
deleted file mode 100644 (file)
index a9fc106..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-using System;
-
-public class Test
-{
-       static void Main ()
-       {
-               SimpleStruct <string> s = new SimpleStruct <string> ();
-       }
-}
-
-public struct SimpleStruct <T>
-{
-       T data;
-
-       public SimpleStruct (T data)
-       {
-               this.data = data;
-       }
-}