<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <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

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

using System;

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

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