https://bugzilla.novell.com/show_bug.cgi?id=658645
https://bugzilla.novell.com/show_bug.cgi?id=658645#c2 --- Comment #2 from Zoltan Varga <[email protected]> 2010-12-10 01:23:07 UTC --- I can reproduce it, it is actually a stack walk problem, a testcase: using System; class C<T> { public void Foo () { throw new Exception (); } } class D : C<string> { } public class Tests { public static void Main (String[] args) { new D ().Foo (); } } This should print C[System.String], but it prints C[T]. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug. _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
