2001-11-16 Miguel de Icaza <miguel@ximian.com>
[mono.git] / mcs / mcs / TODO
index ebd1f07dc0c8a9ae78131e6ff533e6e3c2b0a52e..1c23a3dd3a7631f15c24d276544a2f336a84914a 100644 (file)
@@ -138,6 +138,20 @@ BUGS
 
        Multi-dim arrays are declared as [,] instead of [0..,0..]
 
+* Variables
+
+       Things like:
+
+       for (int i = 0; ...; i++){
+       }
+
+       for (int i = 0; i < 10; i++){
+       }
+
+       Currently defines `i' for the rest of the execution after the first
+       loop, so the second loop generates an error.
+
+       I think we should pop all the blocks until this point.
 
 PENDING TASKS
 -------------