[Mono-bugs] [Bug 624197] New: dmcs issue with dynamic in overriden methods

bugzilla_noreply at novell.com bugzilla_noreply at novell.com
Wed Jul 21 04:44:19 EDT 2010


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

http://bugzilla.novell.com/show_bug.cgi?id=624197#c0


           Summary: dmcs issue with dynamic in overriden methods
    Classification: Mono
           Product: Mono: Compilers
           Version: SVN
          Platform: Other
        OS/Version: Other
            Status: NEW
          Severity: Normal
          Priority: P5 - None
         Component: C#
        AssignedTo: msafar at novell.com
        ReportedBy: jbevain at novell.com
         QAContact: mono-bugs at lists.ximian.com
                CC: lupus at novell.com
          Found By: ---
           Blocker: ---


Repro:

<<<<<<<
using System;

class Foo {
    public virtual void Dyn (out dynamic o)
    {
        o = null;
    }
}

class Bar : Foo {
    public override void Dyn (out dynamic o)
    {
        base.Dyn (out o);
    }
}

class Program {

    static void Main ()
    {
    }
}
<<<<<<<

Code compiles with csc4.
Blocks IronRuby 1.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.


More information about the mono-bugs mailing list