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

using System;

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