[Mono-bugs] [Bug 51679][Wis] Changed - segfault on 'return'

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Thu, 4 Dec 2003 05:44:22 -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 vargaz@freemail.hu.

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

--- shadow/51679	2003-12-03 21:53:20.000000000 -0500
+++ shadow/51679.tmp.8146	2003-12-04 05:44:22.000000000 -0500
@@ -1,16 +1,16 @@
 Bug#: 51679
-Product: Mono/Runtime
+Product: Mono/MCS
 Version: unspecified
-OS: 
+OS: unknown
 OS Details: 
 Status: NEW   
 Resolution: 
-Severity: 
+Severity: Unknown
 Priority: Wishlist
-Component: misc
+Component: Misc
 AssignedTo: mono-bugs@ximian.com                            
 ReportedBy: orphennui@yahoo.com               
 QAContact: mono-bugs@ximian.com
 TargetMilestone: ---
 URL: 
 Cc: 
@@ -36,6 +36,21 @@
 	string filename = backend.User.Username + ":" + 
 		backend_type.FullName + ".xml";
 	Stream outstream = File.Create (Path.Combine (ConfigDir, 
 		filename));
 	serial.Serialize (outstream, backend);
 }
+
+------- Additional Comments From vargaz@freemail.hu  2003-12-04 05:44 -------
+This is actually an mcs bug. Here is a complete testcase:
+
+<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
+using System;
+
+public class Test {
+
+         public static void Main (string[] args) {
+                 return;
+                 int i = 0;
+         }
+}
+<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<