<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS1959</ErrorName>
  <Examples>
    <string>// CS1959: Type parameter `T' cannot be declared const
// Line: 8

struct S
{
	public void Foo&lt;T&gt; () where T : struct
	{
		const T t = null;
	}
}
</string>
    <string>// CS1959: Type parameter `T' cannot be declared const
// Line: 10

class C
{
}

class C&lt;T&gt; where T : C
{
	const T t = null;
}
</string>
  </Examples>
</ErrorDocumentation>