18 lines
310 B
C#
18 lines
310 B
C#
|
// 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";
|
||
|
}
|
||
|
}
|