<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS1948</ErrorName>
  <Examples>
    <string>// CS1948: A range variable `T' conflicts with a method type parameter
// Line: 12


using System;
using System.Linq;

class C
{
	public static void Foo &lt;T&gt; ()
	{
		var e = from T in "a"
			select T;
	}
}
</string>
    <string>// CS1948: A range variable `T' conflicts with a method type parameter
// Line: 13

using System;
using System.Linq;

class C
{
	public static void Foo &lt;T&gt; ()
	{
		var s = "0";
		var e = from T in "a"
			select T + s;
	}
}
</string>
  </Examples>
</ErrorDocumentation>