[svn] r6239: nemerle/trunk/ncc/testsuite/positive/nullable.n

nazgul svnadmin at nemerle.org
Sun May 7 16:05:41 CEST 2006


Log:
Do not check x.Equals(null) condition on mono for nullable type

Author: nazgul
Date: Sun May  7 16:05:29 2006
New Revision: 6239

Modified:
   nemerle/trunk/ncc/testsuite/positive/nullable.n

Modified: nemerle/trunk/ncc/testsuite/positive/nullable.n
==============================================================================
--- nemerle/trunk/ncc/testsuite/positive/nullable.n	(original)
+++ nemerle/trunk/ncc/testsuite/positive/nullable.n	Sun May  7 16:05:29 2006
@@ -17,7 +17,10 @@
 
   equals () : void {
     mutable x = null;
+#if !RUNTIME_MONO    
+    // mono release and svn from 5.5.2006 does not handle this correctly
     assert (x.Equals (null));
+#endif
     _ = x : int?;
   }
     



More information about the svn mailing list