[Mono-bugs] [Bug 76593][Wis] Changed - compiler error on &&

bugzilla-daemon at bugzilla.ximian.com bugzilla-daemon at bugzilla.ximian.com
Fri Nov 4 11:04:46 EST 2005


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 at ximian.com.

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

--- shadow/76593	2005-10-29 16:27:02.000000000 -0400
+++ shadow/76593.tmp.1108	2005-11-04 11:04:46.000000000 -0500
@@ -1,17 +1,17 @@
 Bug#: 76593
 Product: Mono: Compilers
 Version: 1.1
-OS: 
+OS: unknown
 OS Details: Panther
 Status: NEW   
 Resolution: 
-Severity: 
+Severity: Unknown
 Priority: Wishlist
 Component: C#
-AssignedTo: rharinath at novell.com                            
+AssignedTo: martin at ximian.com                            
 ReportedBy: ats at cs.rit.edu               
 QAContact: mono-bugs at ximian.com
 TargetMilestone: ---
 URL: 
 Cc: 
 Summary: compiler error on &&
@@ -35,6 +35,25 @@
 
 How often does this happen? 
 always
 
 Additional Information:
 The additional files 'live' above the link given above.
+
+------- Additional Comments From miguel at ximian.com  2005-11-04 11:04 -------
+Here is an actual simple test case instead of the mess provided before:
+
+class Abuse<T> {}
+
+class X {
+        static int Main ()
+        {
+                Abuse<string> a = new Abuse<string> ();
+                if (a && null)
+                        return 1;
+                return 0;
+        }
+}
+
+There is a patch from mcs that I believe we need to port to gmcs and
+might eliminate this problem (the recent Null code from Marek).
+


More information about the mono-bugs mailing list