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=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 [EMAIL PROTECTED] 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 [EMAIL PROTECTED] 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 (); + } +} + + _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
