<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0412</ErrorName>
  <Examples>
    <string>// CS0412: The type parameter name `T' is the same as local variable or parameter name
// Line: 8

class C
{
	public void Foo&lt;T&gt; (int value)
	{
		int T;
	}
}
</string>
    <string>// CS0412: The type parameter name `T' is the same as local variable or parameter name
// Line: 8

using System;

interface I
{
	T Foo&lt;T&gt;(IComparable T);
}
</string>
    <string>// CS0412: The type parameter name `T' is the same as local variable or parameter name
// Line: 6

class C
{
	public void Foo&lt;T&gt; (string T)
	{
	}
}
</string>
  </Examples>
</ErrorDocumentation>