Author: marek
Date: 2005-07-20 07:36:34 -0400 (Wed, 20 Jul 2005)
New Revision: 47465

Added:
   trunk/mcs/errors/cs0037-2.cs
Modified:
   trunk/mcs/errors/known-issues-gmcs
Log:
new test

Added: trunk/mcs/errors/cs0037-2.cs
===================================================================
--- trunk/mcs/errors/cs0037-2.cs        2005-07-20 10:25:04 UTC (rev 47464)
+++ trunk/mcs/errors/cs0037-2.cs        2005-07-20 11:36:34 UTC (rev 47465)
@@ -0,0 +1,10 @@
+// cs0037-2.cs: Cannot convert null to `char' because it is a value type
+// Line: 8
+
+class Test
+{
+       static void Main ()
+       {
+               char p = null;
+       }
+}

Modified: trunk/mcs/errors/known-issues-gmcs
===================================================================
--- trunk/mcs/errors/known-issues-gmcs  2005-07-20 10:25:04 UTC (rev 47464)
+++ trunk/mcs/errors/known-issues-gmcs  2005-07-20 11:36:34 UTC (rev 47465)
@@ -11,6 +11,7 @@
 # csXXXX.cs NO ERROR   : error test case doesn't report any error. An 
exception is considered
 #                        as NO ERROR and CS5001 is automatically ignored.
 
+cs0037-2.cs
 cs0118.cs
 cs0118-3.cs
 cs0118-4.cs

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

Reply via email to