8 lines
138 B
C#
Raw Normal View History

// CS1105: `ITest.Method(this int)': Extension methods must be declared static
// Line: 6
interface ITest
{
void Method (this int a);
}