[Mono-bugs] [Bug 71013][Cri] Changed - generic signatures complains error

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Sun, 30 Jan 2005 14:32:40 -0500 (EST)


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 miguel@ximian.com.

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

--- shadow/71013	2005-01-05 03:12:55.000000000 -0500
+++ shadow/71013.tmp.16637	2005-01-30 14:32:40.000000000 -0500
@@ -1,14 +1,14 @@
 Bug#: 71013
 Product: Mono: Compilers
 Version: 1.1
-OS: 
+OS: unknown
 OS Details: 
-Status: NEW   
-Resolution: 
-Severity: 
+Status: RESOLVED   
+Resolution: NOTABUG
+Severity: Unknown
 Priority: Critical
 Component: C#
 AssignedTo: mono-bugs@ximian.com                            
 ReportedBy: tsureshkumar@novell.com               
 QAContact: mono-bugs@ximian.com
 TargetMilestone: ---
@@ -65,6 +65,20 @@
 Mono JIT compiler version 1.1.3, (C) 2002-2004 Novell, Inc and
 Contributors. www.go-mono.com
         TLS:           normal
         GC:            Included Boehm (with typed GC)
         SIGSEGV      : normal
         Globalization: none
+
+------- Additional Comments From miguel@ximian.com  2005-01-30 14:32 -------
+The problem is that your code will unify type parameters, consider
+what happens if you do:
+
+TestMe<int> t = new TestMe<int>
+
+t.getme (1);
+
+There is no way of choosing which method to call: getme (int) or
+getme (K)
+
+If you have a sample that we misscompile of unification compared
+to CSC, please reopen this bug.