[Mono-bugs] [Bug 78570][Wis] Changed - Wrong/missing strack trace information for nested type method

bugzilla-daemon at bugzilla.ximian.com bugzilla-daemon at bugzilla.ximian.com
Sat Jun 3 12:28:15 EDT 2006


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 at ximian.com.

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

--- shadow/78570	2006-06-02 15:11:51.000000000 -0400
+++ shadow/78570.tmp.21107	2006-06-03 12:28:15.000000000 -0400
@@ -1,14 +1,14 @@
 Bug#: 78570
 Product: Mono: Runtime
 Version: 1.1
-OS: 
+OS: unknown
 OS Details: Windows XP
-Status: NEW   
+Status: NEEDINFO   
 Resolution: 
-Severity: 
+Severity: Unknown
 Priority: Wishlist
 Component: debug
 AssignedTo: martin at ximian.com                            
 ReportedBy: rodrigobamboo at gmail.com               
 QAContact: mono-bugs at ximian.com
 TargetMilestone: ---
@@ -56,6 +56,32 @@
 Unhandled Exception: System.ApplicationException: ai
 in <0x0002e> Foo+Bar:baz ()
 in [0x00005] (at SimpleBoo.boo:3) Foo:zeng ()
 in [0x00005] (at SimpleBoo.boo:9) SimpleBooModule:Main (System.String[] argv)
 
 Both programs output the correct stack trace information on ms.net.
+
+------- Additional Comments From miguel at ximian.com  2006-06-03 12:28 -------
+This looks like a bug/limitation in Boo, the equivalent C# code
+compiled with mcs works.
+
+using System;
+class Foo {
+	int Zeng ()
+	{
+		return new Bar ().Baz ();
+	}
+
+public	class Bar {
+		public int Baz ()
+		{
+			throw new Exception ();
+		}
+	}
+
+	static void Main ()
+	{
+		new Foo ().Zeng ();
+	}
+}
+
+Setting bug to NEEDINFO.


More information about the mono-bugs mailing list