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: bd23527d238e8fa601778a5656c494c2e0b3cace (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// cs1601.cs: Method or delegate parameter cannot be of type `ref System.TypedReference'
// Line: 10
using System;

class X {
	static void Main ()
	{
	}

	static void M (ref TypedReference a)
	{
	}
}