[Mono-bugs] [Bug 47689][Wis] Changed - The runtime should detect stack overflow

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Mon, 18 Aug 2003 05:50:39 -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 gonzalo@ximian.com.

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

--- shadow/47689	2003-08-17 15:55:26.000000000 -0400
+++ shadow/47689.tmp.29595	2003-08-18 05:50:38.000000000 -0400
@@ -1,23 +1,23 @@
 Bug#: 47689
 Product: Mono/Runtime
 Version: unspecified
-OS: 
+OS: unknown
 OS Details: 
 Status: NEW   
 Resolution: 
-Severity: 
+Severity: Unknown
 Priority: Wishlist
 Component: misc
 AssignedTo: mono-bugs@ximian.com                            
 ReportedBy: pumrs@web.de               
 QAContact: mono-bugs@ximian.com
 TargetMilestone: ---
 URL: 
 Cc: 
-Summary: XSP aborts due to Programming Error in ASPX page
+Summary: The runtime should detect stack overflow
 
 Please fill in this template when reporting a bug, unless you know what you are doing. 
 Description of Problem: 
  
  
 Steps to reproduce the problem: 
@@ -47,6 +47,24 @@
 Error message in compiler or at runtime in in XSP 
  
 How often does this happen?  
 every time 
  
 Additional Information:
+
+------- Additional Comments From gonzalo@ximian.com  2003-08-18 05:50 -------
+Another test case:
+
+class C
+{
+    int Prop {
+        set { Prop = value; }
+    }
+
+    static void Main ()
+    {
+         C c = new C ();
+         c.Prop = 1;
+    }
+}
+
+