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

cs1601.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2d9d39cfd557e6795ec7eb714f1fee2b06bc7982 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// cs1601.cs: ArgIterator and TypedReference are invalid as ref/out arguments
//
using System;

class X {
	static void Main ()
	{
	}

	static void M (ref TypedReference a)
	{
	}
}