Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

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