Switch to compiler-tester
[mono.git] / mcs / tests / gen-26.cs
diff --git a/mcs/tests/gen-26.cs b/mcs/tests/gen-26.cs
deleted file mode 100644 (file)
index 0397086..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-// Test access to class fields outside the generic type declaration.
-
-class Foo<T>
-{
-       public T Hello;
-
-       public Foo ()
-       { }
-}
-
-class X
-{
-       static void Main ()
-       {
-               Foo<int> foo = new Foo<int> ();
-               foo.Hello = 9;
-       }
-}