[Mono-bugs] [Bug 38291][Nor] Changed - mcs gets exception when compiling this incorrect code

bugzilla-daemon@rocky.ximian.com bugzilla-daemon@rocky.ximian.com
Wed, 19 Feb 2003 15:25:28 -0500 (EST)


Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.

Changed by pt99par@student.bth.se.

http://bugzilla.ximian.com/show_bug.cgi?id=38291

--- shadow/38291	Tue Feb 18 19:00:59 2003
+++ shadow/38291.tmp.9316	Wed Feb 19 15:25:28 2003
@@ -42,6 +42,17 @@
 allways
 
 Additional Information:
 
 ------- Additional Comments From miguel@ximian.com  2003-02-18 19:00 -------
 Can you post a complete sample?  It helps to debug.
+
+------- Additional Comments From pt99par@student.bth.se  2003-02-19 15:25 -------
+code ----------------------------
+using System.Collections.Specialized;
+public class Bug {
+    public static void Main( string[] args ) {
+	NameValueCollection c = 
+         new NameValueCollection();c.Item["k"]="v";
+    }
+}
+------------------