[Mono-bugs] [Bug 656262] System.Reflection.Emit.TypeBuilder.create_runtime_class crash as of git rev c66e414be18a5da230a1988ba572d2889f3d5548
bugzilla_noreply at novell.com
bugzilla_noreply at novell.com
Thu Dec 2 18:46:10 EST 2010
https://bugzilla.novell.com/show_bug.cgi?id=656262
https://bugzilla.novell.com/show_bug.cgi?id=656262#c2
Jonathan Bogdoll <j.bogdoll at gmx.net> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEEDINFO |NEW
InfoProvider|j.bogdoll at gmx.net |
--- Comment #2 from Jonathan Bogdoll <j.bogdoll at gmx.net> 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.
More information about the mono-bugs
mailing list