[Mono-bugs] [Bug 47319][Nor] New - Crash on compound assignment
bugzilla-daemon@rocky.ximian.com
bugzilla-daemon@rocky.ximian.com
Sun, 3 Aug 2003 21:27:55 -0400 (EDT)
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=47319
--- shadow/47319 Sun Aug 3 21:27:54 2003
+++ shadow/47319.tmp.16984 Sun Aug 3 21:27:54 2003
@@ -0,0 +1,30 @@
+Bug#: 47319
+Product: Mono/MCS
+Version: unspecified
+OS:
+OS Details:
+Status: NEW
+Resolution:
+Severity:
+Priority: Normal
+Component: Misc
+AssignedTo: mono-bugs@ximian.com
+ReportedBy: miguel@ximian.com
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL:
+Cc:
+Summary: Crash on compound assignment
+
+The following program crashes mcs:
+
+using System.Collections;
+
+class X {
+
+ static void Main ()
+ {
+ Hashtable h = new Hashtable ();
+ int a = (int)h [0] = 1;
+ }
+}