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 [EMAIL PROTECTED] 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: [EMAIL PROTECTED] ReportedBy: [EMAIL PROTECTED] QAContact: [EMAIL PROTECTED] 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 [EMAIL PROTECTED] 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. _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
