summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1988-2.cs
blob: 22e30faf93e5349fca10d68cb17a3b9c7fef136b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// CS1988: Async methods cannot have ref or out parameters
// Line: 12

using System;

class C
{
	delegate void D (ref int i);
	
	public static void Main ()
	{
		D d = async delegate { };
	}
}