2005-06-24 Martin Baulig <martin@ximian.com>
[mono.git] / mcs / errors / cs0611.cs
1 // cs0611.cs: 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