summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1678.cs
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) {};
	}
}