2010-07-05 Jb Evain <jbevain@novell.com>
authorJb Evain <jbevain@gmail.com>
Mon, 5 Jul 2010 16:58:13 +0000 (16:58 -0000)
committerJb Evain <jbevain@gmail.com>
Mon, 5 Jul 2010 16:58:13 +0000 (16:58 -0000)
* TypeTest.cs: prefixed TypedReference with global:: to
remove confusion with the test suite namespace.

svn path=/trunk/mcs/; revision=159909

mcs/class/corlib/Test/System/ChangeLog
mcs/class/corlib/Test/System/TypeTest.cs

index a90cf0ab6bc856613af066bbf665163e16df618c..c6604249ffbf202693fa0316f105900e3033f541 100644 (file)
@@ -1,3 +1,8 @@
+2010-07-05  Jb Evain  <jbevain@novell.com>
+
+       * TypeTest.cs: prefixed TypedReference with global:: to
+       remove confusion with the test suite namespace.
+
 2010-06-29 Rodrigo Kumpera  <rkumpera@novell.com>
 
        * TypeTest.cs: Add tests for #612780.
index 16ca22a305c9b75b203c8ffb716404a9b18126c7..518c01eadcfdc7e8121036d3be131a77099570c4 100644 (file)
@@ -3325,17 +3325,17 @@ PublicKeyToken=b77a5c561934e089"));
                public void CannotMakeDerivedTypesFromTypedByRef ()
                {
                try {
-               typeof (System.TypedReference).MakeArrayType ();
+               typeof (global::System.TypedReference).MakeArrayType ();
                Assert.Fail ("#1");
                } catch (TypeLoadException) { }
 
                try {
-               typeof (System.TypedReference).MakeByRefType ();
+               typeof (global::System.TypedReference).MakeByRefType ();
                Assert.Fail ("#2");
                } catch (TypeLoadException) { }
 
                try {
-               typeof (System.TypedReference).MakePointerType ();
+               typeof (global::System.TypedReference).MakePointerType ();
                Assert.Fail ("#3");
                } catch (TypeLoadException) { }