<?xml version="1.0" encoding="euc-jp"?>
<ErrorDocumentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <ErrorName>CS0253</ErrorName>
  <Examples>
    <string>// CS0253: Possible unintended reference comparison. Consider casting the right side of the expression to `string' to compare the values
// Line: 10
// Compiler options: -warn:2 -warnaserror

using System;

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