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: fec06bfd395de7ea15d65bf6f6c7066d8b37fffc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// cs1678.cs: Parameter `1' is declared as type `long' but should be `int'
// Line: 11
//
// Signature mismatch.
//
delegate void D (int x);

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