[Mono-bugs] [Bug 58305][Nor] Changed - gmcs: mcs chokes on generic method in interface

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Sun, 30 May 2004 17:41:14 -0400 (EDT)


Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.

Changed by martin@ximian.com.

http://bugzilla.ximian.com/show_bug.cgi?id=58305

--- shadow/58305	2004-05-29 09:38:05.000000000 -0400
+++ shadow/58305.tmp.8185	2004-05-30 17:41:14.000000000 -0400
@@ -44,6 +44,18 @@
 Program compiles OK.
 
 ------- Additional Comments From sestoft@dina.kvl.dk  2004-05-10 18:42 -------
 Created an attachment (id=7673)
 C# source file demonstrating problem
 
+
+------- Additional Comments From martin@ximian.com  2004-05-30 17:41 -------
+Simpler test case:
+
+using System;
+using System.Collections.Generic;
+
+interface Foo
+{
+	IMyList<U> Map<U> ();
+}
+