<?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>CS1637</ErrorName>
  <Examples>
    <string>// CS1637: Iterators cannot have unsafe parameters or yield types
// Line: 6
// Compiler options: /unsafe

unsafe class C
{
    public System.Collections.IEnumerator GetEnumerator (int* p)
    {
        yield return 1;
    }
    
}
</string>
  </Examples>
</ErrorDocumentation>