<?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>CS0140</ErrorName>
  <Examples>
    <string>// cs0140.cs: The label `L1' is a duplicate
// Line: 11 

namespace cs0140Test
{
	public class A
	{
		static int Main ()
		{
			L1: int a=0;
			L1: a++;
			if (a &lt; 3)
			goto L1;
			return 0;
		}
	}
}
</string>
  </Examples>
</ErrorDocumentation>