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

http://bugzilla.novell.com/show_bug.cgi?id=619919#c1


--- Comment #1 from Marek Safar <[email protected]> 2010-07-08 07:37:32 UTC ---
Test #2

using System;

class A
{
    public virtual void Foo<T> (T a, params string[] b) where T : struct
    {
    }
}

class B : A
{
    public void Test (int v)
    {
        Action a = () => base.Foo<int> (b: "n", a: v);
        a ();
    }

    public void Test2<T> (T b) where T : struct
    {
        Action a2 = () => base.Foo<T> (b, "as", "asdfa");
    }
}

class Test
{
    public static void Main ()
    {
        new B ().Test (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