summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1601-2.cs
blob: d7094a946728d3453925764378ef0059570a1ca2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// CS1601: Method or delegate parameter cannot be of type `ref System.ArgIterator'
// Line: 10
using System;

class X {
	static void Main ()
	{
	}

	static void M (ref ArgIterator a)
	{
	}
}