http://bugzilla.novell.com/show_bug.cgi?id=616463
http://bugzilla.novell.com/show_bug.cgi?id=616463#c7 --- Comment #7 from Piotr Wysocki <[email protected]> 2010-06-25 13:42:19 UTC --- Hope that helps: I have checked that my attached example: - compiles and works in MS.NET, - compiled by m...@linux works in MS.NET, - compiles and works in mono 2.4 @ Windows, - compiles but fails to work in mono 2.6.4 @ Windows. I have also managed to simplify the example a bit: class Foo<T> { public virtual void Go () { Go2<T> (); } protected virtual void Go2<T2> () { } } class FooBar<T> : Foo<T> { } class MainClass { public static void Main (string[] args) { new FooBar<object> ().Go (); System.Console.WriteLine ("Hello World!"); } } -- Configure bugmail: http://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
