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

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


Gert Driesen <[EMAIL PROTECTED]> changed:

           What    |Removed                                         |Added
----------------------------------------------------------------------------
                 CC|                                                |[EMAIL 
PROTECTED]
            Summary|invalid IL generated for comparison of enum with|[GMCS] 
invalid IL generated for comparison of
                   |null                                            |enum with 
null




--- Comment #2 from Gert Driesen <[EMAIL PROTECTED]>  2008-04-25 17:05:17 MST 
---
Simpler repro:

using System;

class Program
{
        static int Main ()
        {
                Error error = Error.FILE_NOT_FOUND;
                return (error == null) ? 1 : 0;
        }
}

internal enum Error
{
        FILE_NOT_FOUND
}

Expected result:

test.cs(8,11): warning CS0472: The result of the expression is always 'false'
        since a value of type 'Error' is never equal to 'null' of type 'Error?'

running it should result in exit code 0.

Actual result:

No warning on compile and InvalidProgramException running it.


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

Reply via email to