Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / errors / cs0611.cs
1 // CS0611: Array elements cannot be of type `System.ArgIterator'
2 // Line: 5
3
4 public class Sample {
5         System.ArgIterator[] arg;
6                 static void Main () {}
7 }
8
9
10