<?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: The given expression is always of the provided (`object') type
// Line: 10
// Compiler options: -warnaserror -warn:1

class X
{
	public void Foo ()
	{
		int x = 1;
		if (x is object) {
		}
	}
}
</string>
    <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>