<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS1931</ErrorName>
  <Examples>
    <string>// 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&lt;int&gt; e = from int ii in int_array select "1";
	}
}
</string>
    <string>// CS1931: A range variable `i' conflicts with a previous declaration of `i'
// Line: 13


using System;
using System.Linq;

class C
{
	public void Foo (int i)
	{
		var e = from v in "a"
			let i = 2
			select v;
	}
}
</string>
    <string>// CS1931: A range variable `i' conflicts with a previous declaration of `i'
// Line: 12

using System;
using System.Linq;

class C
{
	public static void Main ()
	{
		int i = 9;
		var e = from i in "a"
			select 1;
	}
}
</string>
    <string>// CS1931: A range variable `i' conflicts with a previous declaration of `i'
// Line: 14


using System;
using System.Linq;

class C
{
	public static void Main ()
	{
		int i = 9;
		var e = from v in "a"
			let i = 2
			select v;
	}
}
</string>
  </Examples>
</ErrorDocumentation>