[Mono-bugs] [Bug 75960][Nor] Changed - Stack traces seem incorrect

bugzilla-daemon at bugzilla.ximian.com bugzilla-daemon at bugzilla.ximian.com
Thu Sep 8 10:52:00 EDT 2005


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=75960

--- shadow/75960	2005-09-07 15:02:15.000000000 -0400
+++ shadow/75960.tmp.17279	2005-09-08 10:52:00.000000000 -0400
@@ -153,6 +153,38 @@
 with actually builds.
 
 ------- Additional Comments From miguel at ximian.com  2005-09-07 15:02 -------
 I just built it, it works.
 
 If you have problems building it, find me on irc, and we can discuss it.
+
+------- Additional Comments From miguel at ximian.com  2005-09-08 10:52 -------
+Here is a small test case:
+
+1. Compile: mcs a.cs -pkg:gtk-sharp
+2. Run inside mdb: mdb a.exe
+    (mdb) cont
+3. Click on button.
+4. Issue the "where" command
+
+using Gtk;
+using System;
+
+class D {
+	D val;
+
+	static void Main ()
+	{
+		Application.Init ();
+		Window w = new Window ("XX");
+		Button b = new Button ("Hola");
+		w.Add (b);
+		b.Clicked += delegate {
+			D d = new D ();
+			D x = d.val.val;
+		};
+		w.ShowAll ();
+		Application.Run ();
+	}
+}
+
+


More information about the mono-bugs mailing list