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: dfd5352859a61c9c2f774185729c2aa38f3fa264 (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS1678: Parameter `1' is declared as type `long' but should be `int'
// Line: 9

delegate void D (int x);

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