<?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>CS1718</ErrorName>
  <Examples>
    <string>// CS1718: A comparison made to same variable. Did you mean to compare something else?
// Line: 10
// Compiler options: -warnaserror -warn:3

class C
{
	public static void Main () 
	{ 
		int a = 20;
		if (a &gt; a) {
			return;
		}
	}
}
 
</string>
  </Examples>
</ErrorDocumentation>