<?xml version="1.0" encoding="iso-8859-1"?>
<ErrorDocumentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <ErrorName>CS8209</ErrorName>
  <Examples>
    <string>// cs8209.cs: yield can not appear inside the catch clause.
// Line: 10
using System.Collections;
class X {

	IEnumerator GetEnum ()
	{
		try {
		} catch {
			yield 1;
		}
	}
	
	static void Main ()
	{
	}
}
</string>
  </Examples>
</ErrorDocumentation>