<?xml version="1.0" encoding="us-ascii"?>
<ErrorDocumentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <ErrorName>CS1031</ErrorName>
  <Examples>
    <string>// CS1031: Type expected
// Line: 8

using System;

class M
{
	public static void Main ()
	{
		Type t = typeof (this);
	}
}

</string>
    <string>// CS1031: Type expected
// Line: 4

class M : 1
{
}

</string>
    <string>// CS1031: Type expected
// Line: 4

enum E : this
{
	a = 1
}
</string>
    <string>// CS1031: Type expected
// Line: 17

using System;

class C&lt;T&gt;
{
	class G&lt;U&gt;
	{
	}
}

class M
{
	public static void Main ()
	{
		Type t = typeof (C&lt;int&gt;.G&lt;&gt;);
	}
}

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