<?xml version="1.0" encoding="us-ascii"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0283</ErrorName>
  <Examples>
    <string>// cs0283-2.cs: The type `S' cannot be declared const
// Line: 12

struct S
{
}

class C
{
	public void Foo ()
	{
		const S s = new S();
	}
}</string>
    <string>// CS0283: The type `int*' cannot be declared const
// Line: 10
// Compiler options: -unsafe

unsafe class Test
{
	const int* o = null;
}</string>
    <string>// cs0283.cs: The type `S' cannot be declared const
// Line: 10

struct S
{
}

class C
{
	const S s = new S();
}</string>
  </Examples>
</ErrorDocumentation>