<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0283</ErrorName>
  <Examples>
    <string>// CS0283: The type `int*' cannot be declared const
// Line: 10
// Compiler options: -unsafe

unsafe class Test
{
	const int* o = null;
}</string>
    <string>// CS0283: 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 `S' cannot be declared const
// Line: 10

struct S
{
}

class C
{
	const S s = new S();
}</string>
    <string>// CS0283: The type `int?' cannot be declared const
// Line: 8

class C
{
	void Test ()
	{
		const int? ac = null;
	}
}
</string>
  </Examples>
</ErrorDocumentation>