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

cs1678.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4e26e76516d8d63ab639591ec0fed7d9c43612e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// cs1678: signature missmatch on type parameter.
// Line: 11
//
// Signature mismatch.
//
delegate void D (int x);

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