<?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>CS1629</ErrorName>
  <Examples>
    <string>// cs1629.cs: Unsafe code may not appear in iterators
// Line: 8
// Compiler options: -unsafe

using System.Collections;

class X {
	static IEnumerator GetIt ()
	{
	    unsafe {
		yield return 1;
	    }
	}
	
}</string>
    <string>// cs1629.cs: Unsafe code may not appear in iterators
// Line: 8
// Compiler options: -unsafe

using System.Collections;

class X {
	static unsafe IEnumerator GetIt ()
	{
	    yield return 1;
	}
	
}</string>
  </Examples>
</ErrorDocumentation>