http://bugzilla.novell.com/show_bug.cgi?id=523298


           Summary: Convert from string to enum type results in SIGSEGV
    Classification: Mono
           Product: Mono: Class Libraries
           Version: unspecified
          Platform: Other
        OS/Version: Other
            Status: NEW
          Severity: Normal
          Priority: P5 - None
         Component: CORLIB
        AssignedTo: [email protected]
        ReportedBy: [email protected]
         QAContact: [email protected]
          Found By: ---


Test Case:

using System;

class MainClass
{
    enum Things {
        Foo,
        Bar,
        Bat
    }
    public static void Main (string[] args)
    {
        var thing = Convert.ChangeType ("Bar", typeof (Things));
        Console.WriteLine (thing);
    }
}

Actual Result:

"The application was terminated by a signal: SIGSEGV"

Expected Result:

I don't know, but not a SIGSEGV.

-- 
Configure bugmail: http://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

Reply via email to