[bcl] Remove more NET_2_0 checks from class libs
[mono.git] / mcs / class / corlib / Test / System / ObjectTest.cs
index 669645279c70c2ec0f1f07605aadb719adb85350..4dd5a480fe628b5576c8017700689fec2d10057f 100644 (file)
@@ -109,7 +109,6 @@ public class ObjectTest
                Object y = new Object();
                Assert.AreEqual(x.ToString(), y.ToString(), "All Objects should have same string rep");
        }
-#if NET_2_0
        class Foo<T> {}
 
        [Test]
@@ -119,6 +118,5 @@ public class ObjectTest
                Assert.AreEqual ("MonoTests.System.ObjectTest+Foo`1[System.Object]", foo.ToString (), "Bad ToString of generic instance");
                        
        }
-#endif
 }
 }