<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS1930</ErrorName>
  <Examples>
    <string>// CS1930: A range variable `v' has already been declared in this scope
// Line: 13


using System;
using System.Linq;

class C
{
	public static void Main ()
	{
		var e = from v in "a"
			let v = 1
			select v;
	}
}
</string>
    <string>// CS1930: A range variable `i' has already been declared in this scope
// Line: 14


using System;
using System.Linq;

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