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


           Summary: runtime doesn't support reflection calls to methods
                    taking pointers as parameters.
    Classification: Mono
           Product: Mono: Runtime
           Version: SVN
          Platform: Other
        OS/Version: Other
            Status: NEW
          Severity: Minor
          Priority: P5 - None
         Component: misc
        AssignedTo: [email protected]
        ReportedBy: [email protected]
         QAContact: [email protected]
          Found By: ---


This crash the runtime:

using System;

class Driver
{
    public static unsafe int Test (int *val) {
        return 0;
    }

    public static void Main () {
        typeof (Driver).GetMethod ("Test").Invoke (null, new object [1]);
    }
}

-- 
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