<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS1103</ErrorName>
  <Examples>
    <string>// CS1103: The extension method cannot be of type `dynamic'
// Line: 6

static class S
{
	static void Foo (this dynamic d)
	{
	}
}
</string>
    <string>// CS1103: The extension method cannot be of type `int*'
// Line: 7
// Compiler options: -unsafe

static class S
{
	unsafe static void Foo (this int* iptr)
	{
	}
}
</string>
  </Examples>
</ErrorDocumentation>