summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1676-2.cs
blob: 47f5f8929394f49f1d859ea1fc6f818a01baa22d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS1676: Parameter `1' must be declared with the `out' keyword
// Line: 10

class C
{
	delegate int D (out int i);

	public static void Main ()
	{
		 D d = a => 1;
	}
}