<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0429</ErrorName>
  <Examples>
    <string>// CS0429: Unreachable expression code detected
// Line: 12
// Compiler options: -warnaserror

public class X
{
	static void test (int stop)
	{
		int pos = 0;
		do {
			break;
		} while (pos &lt; stop);
	}
}
</string>
    <string>// CS0429: 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>
    <string>// CS0429: Unreachable expression code detected
// Line: 9
// Compiler options: -warn:4 -warnaserror

class Main
{
	public void Method (int i)
	{
		var x = true ? 1 : i;
	}
}
</string>
    <string>// CS0429: 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>
  </Examples>
</ErrorDocumentation>