<?xml version="1.0" encoding="us-ascii"?>
<ErrorDocumentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <ErrorName>CS1932</ErrorName>
  <Examples>
    <string>// CS1932: A range variable `ii' cannot be initialized with `method group'
// Line: 12

using System;
using System.Linq;

class C
{
	public void Foo (int i)
	{
		var e = from v in "a"
			let ii = Foo
			select v;
	}
}
</string>
    <string>// CS1932: A range variable `ii' cannot be initialized with `void'
// Line: 13


using System;
using System.Linq;

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