// CS1105: `ITest.Method(this int)': Extension methods must be declared static
// Line: 6

interface ITest
{
	void Method (this int a);
}