blob: 86c63a08122b26747dbe5936ac93256d62032414 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// CS1931: A range variable `ii' conflicts with a previous declaration of `ii'
// Line: 14
using System;
using System.Collections.Generic;
using System.Linq;
class Test
{
public static void Main ()
{
int[] int_array = null;
int ii = 0;
IEnumerable<int> e = from int ii in int_array select "1";
}
}
|