<?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>CS0152</ErrorName>
  <Examples>
    <string>// CS0152: The label `case E.Foo:' already occurs in this switch statement
// Line: 19

using System;

enum E
{
	Foo = 2
}

class X
{
	void Foo (E e)
	{
		switch (e)
		{
			case E.Foo:
				break;
			case E.Foo:
				break;
		}
	}
}
</string>
    <string>// cs0152.cs: The label `case 1:' already occurs in this switch statement
// Line: 9
class X {
	void f (int i)
	{
		switch (i){
		case 1:
			break;
		case 1:	
			break;
		}
	}
}
</string>
  </Examples>
</ErrorDocumentation>