<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS1978</ErrorName>
  <Examples>
    <string>// CS1978: An expression of type `__arglist' cannot be used as an argument of dynamic operation
// Line: 9

class C
{
	public static void Main ()
	{
		dynamic d = null;
		d (__arglist (111));
	}
}
</string>
    <string>// CS1978: An expression of type `void' cannot be used as an argument of dynamic operation
// Line: 9

class C
{
	public static void Main ()
	{
		dynamic d = null;
		d (Main ());
	}
}
</string>
    <string>// CS1978: An expression of type `int*' cannot be used as an argument of dynamic operation
// Line: 9
// Compiler options: -unsafe

unsafe class C
{
	public static void Main ()
	{
		dynamic d = null;
		d ((int*)0);
	}
}
</string>
  </Examples>
</ErrorDocumentation>