﻿<?xml version="1.0" encoding="utf-8"?>
<ErrorDocumentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <ErrorName>CS0652</ErrorName>
  <Examples>
    <string>// cs0652.cs: Comparison to integral constant is useless; the constant is outside the range of type 'type'
// Line: 9

class X
{
	void b ()
	{
                byte b = 0;
                if (b == 500)
                    return;
	}

	static void Main () {}
}
</string>
  </Examples>
</ErrorDocumentation>