[Mono-bugs] [Bug 47991][Wis] Changed - error CS0136 (local variable declaration error) not reported

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Tue, 27 Apr 2004 22:21:18 -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=47991

--- shadow/47991	2004-01-07 20:55:12.000000000 -0500
+++ shadow/47991.tmp.29139	2004-04-27 22:21:18.000000000 -0400
@@ -1,15 +1,15 @@
 Bug#: 47991
-Product: Mono/Compilers
+Product: Mono: Compilers
 Version: unspecified
 OS: unknown
 OS Details: 
 Status: NEW   
 Resolution: 
-Severity: Unknown
-Priority: Normal
+Severity: 040 One week
+Priority: Wishlist
 Component: C#
 AssignedTo: martin@ximian.com                            
 ReportedBy: sestoft@dina.kvl.dk               
 QAContact: mono-bugs@ximian.com
 TargetMilestone: ---
 URL: 
@@ -62,6 +62,22 @@
 
 How often does this happen? 
 
 Always with mcs 0.26
 
 Additional Information:
+
+------- Additional Comments From martin@ximian.com  2004-04-27 22:21 -------
+This is really hard to fix.
+Btw. this is not just for fields, but also for properties, events and
+even methods.
+
+===
+class X
+{
+   public void y () { }
+   public void Test () {
+     y ();
+     int y = 5;
+   }
+}
+===