summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0177-12.cs
blob: 4ee34ddbac2097a6e817043d99ab8c555d9c88de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// CS0177: The out parameter `arg' must be assigned to before control leaves the current method
// Line: 12

class C
{
	delegate void D (string s, out int arg);

	public static void Main ()
	{
		D d = delegate (string s, out int arg)
		{
			return;
		};
	}
}