<?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>CS0134</ErrorName>
  <Examples>
    <string>// cs0134.cs: `o': the constant of reference type other than string can only be initialized with null
// Line: 6

public class C
{
	public static void Main ()
	{
		const object o = 1; 
	}
}
</string>
    <string>// cs0134.cs: `C.o': the constant of reference type other than string can only be initialized with null
// Line: 6

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