remove debug writelines
[mcs.git] / errors / gcs1931-3.cs
blobfe74f65bcb4681f8071f635eac2cbed14e2d351b
1 // CS1931: A range variable `ii' conflicts with a previous declaration of `ii'
2 // Line: 14
5 using System;
6 using System.Collections.Generic;
7 using System.Linq;
9 class Test
11 public static void Main ()
13 int[] int_array = null;
14 int ii = 0;
15 IEnumerable<int> e = from int ii in int_array select "1";