Updated with review feedback.
[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