https://bugzilla.novell.com/show_bug.cgi?id=321615

User [EMAIL PROTECTED] added comment
https://bugzilla.novell.com/show_bug.cgi?id=321615#c5


Gert Driesen <[EMAIL PROTECTED]> changed:

           What    |Removed                                         |Added
----------------------------------------------------------------------------
                 CC|                                                |[EMAIL 
PROTECTED]
             Status|RESOLVED                                        |REOPENED
         Resolution|FIXED                                           |




--- Comment #5 from Gert Driesen <[EMAIL PROTECTED]>  2008-07-03 08:26:24 MDT 
---
This is still not fixed:

using System;

class Program
{
        static unsafe int Main ()
        {
                return Test ((sbyte*) (-1));
        }

        static unsafe int Test (sbyte* x)
        {
                if ((x + 1) < x) {
                        Console.WriteLine ("OK");
                        return 0;
                } else {
                        Console.WriteLine ("BAD");
                        return 1;
                }
        }
}

Expected result:

OK (exitcode 0)

Actual result:

BAD (exitcode 1)


-- 
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  -  mono-bugs@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-bugs

Reply via email to