Bump NuGet.BuildTasks to get new updates and switch to `dev` branch (#5566)
[mono.git] / mcs / errors / cs0610.cs
1 // CS0610: Field or property cannot be of type `System.ArgIterator'
2 // Line: 5
3
4 public class Sample {
5         System.ArgIterator arg;
6 }
7
8
9