https://bugzilla.novell.com/show_bug.cgi?id=324625
User [email protected] added comment https://bugzilla.novell.com/show_bug.cgi?id=324625#c3 Anthony Burke <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #3 from Anthony Burke <[email protected]> 2008-12-11 13:27:10 MST --- Here is a simpler test case with the same results: using System; namespace GenericTest { public class OuterGeneric<T> { public class InnerGeneric<U> { public static string GetTypeNames() { return typeof(T).ToString() + " " + typeof(U).ToString(); } } } class Program { static void Main(string[] args) { string typeNames = OuterGeneric<int>.InnerGeneric<long>.GetTypeNames(); Console.WriteLine(typeNames); } } } -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug. You are the assignee for the bug. _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
