http://bugzilla.novell.com/show_bug.cgi?id=550964
User [email protected] added comment http://bugzilla.novell.com/show_bug.cgi?id=550964#c1 --- Comment #1 from Marek Safar <[email protected]> 2009-10-29 05:29:53 MDT --- simplest repro from jb using System; using System.Collections.Generic; enum MyEnumUlong : ulong { Value_2 = 2 } public class Test { public static int Main () { MyEnumUlong a = MyEnumUlong.Value_2; MyEnumUlong b = MyEnumUlong.Value_2; Pan (a, b); return 0; } static void Pan<T> (T a, T b) { Console.WriteLine (a.Equals (b)); } } -- 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
