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

cs1676.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ba2895d46ef216a8e8b8f8a34862ab752505bc2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// CS1676: Signature mismatch in parameter modifier for parameter #1
// Line: 11
//
// The delegate has an explicit signature, so it can not be assigned.
//
delegate void D (ref int x);

class X {
	static void Main ()
	{
		D d2 = delegate (int x) {};
	}
}