<?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>CS0252</ErrorName>
  <Examples>
    <string>// cs0252.cs: Possible unintended reference comparison; to get a value comparison, cast the left hand side to type `string'
// Line: 10
// Compiler options: -warn:2 -warnaserror

using System;

class X {
	static void Main() {
		object a = "11";
		Console.WriteLine(a == "11");
	}
}
</string>
  </Examples>
</ErrorDocumentation>