Bump NuGet.BuildTasks to get new updates and switch to `dev` branch (#5566)
[mono.git] / mcs / errors / cs1551.cs
1 // CS1551: Indexers must have at least one parameter
2 // Line: 8
3
4 class Test
5 {
6     public int this []
7     {
8         set {}
9     }
10 }