[Mono-bugs] [Bug 523298] New: Convert from string to enum type results in SIGSEGV

bugzilla_noreply at novell.com bugzilla_noreply at novell.com
Sat Jul 18 01:43:26 EDT 2009


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: mono-bugs at lists.ximian.com
        ReportedBy: lunchtimemama at gmail.com
         QAContact: mono-bugs at lists.ximian.com
          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.


More information about the mono-bugs mailing list