18 lines
310 B
C#
Raw Normal View History

// 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";
}
}