Author: marek
Date: 2006-03-19 11:37:21 -0500 (Sun, 19 Mar 2006)
New Revision: 58159

Added:
   trunk/mcs/errors/gcs0453-4.cs
Log:
New test.

Added: trunk/mcs/errors/gcs0453-4.cs
===================================================================
--- trunk/mcs/errors/gcs0453-4.cs       2006-03-19 16:33:09 UTC (rev 58158)
+++ trunk/mcs/errors/gcs0453-4.cs       2006-03-19 16:37:21 UTC (rev 58159)
@@ -0,0 +1,11 @@
+// CS0453: The type `T' must be a non-nullable value type in order to use it 
as type parameter `T' in the generic type or method `System.Nullable<T>'
+// Line: 14
+
+using System;
+
+public static class Nullable_Test {
+       public static int Compare<T> (Nullable<T> left)
+       {
+               return 0;
+       }
+}
\ No newline at end of file

_______________________________________________
Mono-patches maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches

Reply via email to