Bugzilla – Bug 311967
pending init error when using --debug
Last modified: 2007-09-15 21:24:34 UTC
---- Reported by vargaz@freemail.hu 2003-02-04 13:59:11 MST ---- The debugger causes pending init errors for some classes. A testcase is attached below. When I run it with --debug, mono aborts with a pending init error. ========================================================================== using System.Reflection; class B { public C returnC () { return new C (); } } class A : B { } class C : A { } class Bug { static public void Main() { typeof(Bug).Assembly.GetType ("A"); } } ========================================================================= ---- Additional Comments From vargaz@freemail.hu 2003-12-20 13:17:04 MST ---- This was fixed a loooooong time ago.