<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS1599</ErrorName>
  <Examples>
    <string>// CS1599: The return type of `System.ArgIterator' is not allowed
// Line: 8

using System;

class C
{
	public ArgIterator Method ()
	{
		return null;
	}
}</string>
    <string>// CS1599: The return type of `System.TypedReference' is not allowed
// Line: 8

using System;

class C
{
    public TypedReference Method ()
    {
		return null;
    }
}</string>
    <string>// CS1599: The return type of `System.ArgIterator' is not allowed
// Line: 8

using System;

class C
{
    delegate ArgIterator Test (int arg);
}
</string>
    <string>// CS1599: The return type of `System.TypedReference' is not allowed
// Line: 8

using System;

public class Program
{
    public static TypedReference operator + (int a, Program b)
    {
    	throw new ApplicationException ();
    }
}</string>
  </Examples>
</ErrorDocumentation>