[Mono-bugs] [Bug 36934][Maj] Changed - Exception caught while compiling dotnetcommlib
bugzilla-daemon@rocky.ximian.com
bugzilla-daemon@rocky.ximian.com
Tue, 25 Feb 2003 16:51:59 -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 miguel@ximian.com.
http://bugzilla.ximian.com/show_bug.cgi?id=36934
--- shadow/36934 Sun Jan 19 00:35:38 2003
+++ shadow/36934.tmp.16482 Tue Feb 25 16:51:59 2003
@@ -83,6 +83,20 @@
Additional Information:
doing "find -name \*.cs | xargs mcs" i get the same result.
------- Additional Comments From kiwnix@yahoo.es 2003-01-19 00:35 -------
sorry the module to checkout is NNTP, no NEWS
+
+------- Additional Comments From miguel@ximian.com 2003-02-25 16:51 -------
+A simpler test case:
+
+ using System.Collections.Specialized;
+
+class D {
+ static void A (NameValueCollection n)
+ {
+ n ["a"] += ";";
+ }
+
+ static void Main () {}
+}