Switch to compiler-tester
[mono.git] / mcs / tests / gen-76.cs
diff --git a/mcs/tests/gen-76.cs b/mcs/tests/gen-76.cs
deleted file mode 100644 (file)
index 57d0676..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-using System;
-
-struct Foo<T>
-{
-       public T Data;
-
-       public Foo (T data)
-       {
-               this.Data = data;
-       }
-}
-
-class Test<T>
-{
-       public Foo<T> GetFoo (T data)
-       {
-               return new Foo<T> (data);
-       }
-}
-
-class X
-{
-       static int Main ()
-       {
-               Test<long> test = new Test<long> ();
-               Foo<long> foo = test.GetFoo (0x800);
-               //
-               // This is a very simple test, just make sure the struct
-               // is returned correctly.  This was broken until recently
-               // and I just fixed it on amd64.
-               if (foo.Data != 0x800)
-                       return 1;
-               return 0;
-       }
-}
-