Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs1601-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b81d5e246c7bb1385a058bf712f04e89e80107e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// cs1601-2.cs: 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)
	{
	}
}