Bump NuGet.BuildTasks to get new updates and switch to `dev` branch (#5566)
[mono.git] / mcs / errors / cs1105-2.cs
1 // CS1105: `ITest.Method(this int)': Extension methods must be declared static
2 // Line: 6
3
4 interface ITest
5 {
6         void Method (this int a);
7 }