<?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>CS0183</ErrorName>
  <Examples>
    <string>// cs0183.cs: The given expression is always of the provided (`int') type
// Line:
// Compiler options: -warnaserror -warn:1

class X {

	static void Main ()
	{
		int i = 5;

		if (i is int){
		}
	}
}
</string>
  </Examples>
</ErrorDocumentation>