2010-06-04 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs1931-3.cs
blob86c63a08122b26747dbe5936ac93256d62032414
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";