2005-06-24 Martin Baulig <martin@ximian.com>
[mono.git] / mcs / errors / cs1601-2.cs
1 // cs1601.cs: ArgIterator and TypedReference are invalid as ref/out arguments
2 //
3 using System;
4
5 class X {
6         static void Main ()
7         {
8         }
9
10         static void M (ref ArgIterator a)
11         {
12         }
13 }