<?xml version="1.0" encoding="us-ascii"?>
<ErrorDocumentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <ErrorName>CS0429</ErrorName>
  <Examples>
    <string>// cs0429.cs: Unreachable expression code detected
// Line: 11
// Compiler options: -warn:4 -warnaserror

using System;

class Main
{
   public void Method (int i)
   {
       if (5 == 5 || i &gt; 10)
	   Console.WriteLine ("TEST");
   }
}
</string>
    <string>// cs0429.cs: Unreachable expression code detected
// Line: 9
// Compiler options: -warn:4 -warnaserror

class Main
{
   public void Method (int i)
   {
       if (false &amp;&amp; i &gt; 10)
	   return;
   }
}
</string>
  </Examples>
</ErrorDocumentation>