summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1677.cs
blob: d371ef532b651008c50af62e477739820e5611af (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS1677: Parameter `1' should not be declared with the `ref' keyword
// Line: 9

delegate void D (int x);

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