<?xml version="1.0" encoding="us-ascii"?>
<ErrorDocumentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <ErrorName>CS0134</ErrorName>
  <Examples>
    <string>// CS0134: A constant `o' of reference type `object' can only be initialized with null
// Line: 8

public class C
{
	public static void Main ()
	{
		const object o = 1; 
	}
}
</string>
    <string>// CS0134: A constant `C.b' of reference type `bool[]' can only be initialized with null
// Line: 6

class C
{
	const bool [] b = { true };
}
</string>
    <string>// CS0134: A constant `T.i' of reference type `decimal[]' can only be initialized with null
// Line: 12

class T
{
	const decimal[] i = new decimal [] { 2m };
}
</string>
    <string>// CS0134: A constant `C.b' of reference type `object' can only be initialized with null
// Line: 6

class C
{
	const object a = null, b = 1;
}</string>
    <string>// CS0134: A constant `C.o' of reference type `object' can only be initialized with null
// Line: 6

public class C
{
    public const object o = "12345";
}
</string>
  </Examples>
</ErrorDocumentation>