﻿<?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>CS0152</ErrorName>
  <Examples>
    <string>// cs0152.cs: The label `case X:' 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>