Merge pull request #5082 from kumpera/fix-ro-fs-file-delete
[mono.git] / mcs / errors / cs1931-3.cs
1 // CS1931: A range variable `ii' conflicts with a previous declaration of `ii'
2 // Line: 14
3
4
5 using System;
6 using System.Collections.Generic;
7 using System.Linq;
8
9 class Test
10 {
11         public static void Main ()
12         {
13                 int[] int_array = null;
14                 int ii = 0;
15                 IEnumerable<int> e = from int ii in int_array select "1";
16         }
17 }