<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0611</ErrorName>
  <Examples>
    <string>// CS0611: Array elements cannot be of type `System.TypedReference'
// Line: 5

public class Sample {
        System.TypedReference[] references {
                get {
                        return null;
                }
        }

		static void Main () {}
}



</string>
    <string>// CS0611: Array elements cannot be of type `S'
// Line: 13
// Compiler options: -langversion:latest

public ref struct S
{
}

class Test
{
	public static void Main ()
	{
		var x = new S[0];
	}
}</string>
    <string>// CS0611: Array elements cannot be of type `System.ArgIterator'
// Line: 5

public class Sample {
        System.ArgIterator[] arg;
		static void Main () {}
}



</string>
  </Examples>
</ErrorDocumentation>