https://bugzilla.novell.com/show_bug.cgi?id=656262

https://bugzilla.novell.com/show_bug.cgi?id=656262#c2


Jonathan Bogdoll <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEEDINFO                    |NEW
       InfoProvider|[email protected]           |

--- Comment #2 from Jonathan Bogdoll <[email protected]> 2010-12-02 23:46:09 
UTC ---
The following test case triggers the problem. There are two files (to be
compiled to separate assemblies):

-------- File 1 -----------------------------
namespace Test
{
    public interface IGraph<NT>
        where NT: INode<NT>
    {
    }

    public interface INode<NT>
        where NT: INode<NT>
    {
    }
}
---------------------------------------------

-------- File 2 -----------------------------
namespace Test
{
    public interface IGraph<NT>
        where NT: INode<NT>
    {
    }

    public interface INode<NT>
        where NT: INode<NT>
    {
    }
}
---------------------------------------------

gmcs -target:library -out:test1.dll test1.cs
gmcs -r:System.dll -r:test1.dll -target:library -out:test2.dll test2.cs

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