Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-708.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 35cbb010e94860cf7f92293099ba596e9531b0e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
public class A
{
	public delegate ADelegate ADelegate (bool ok);

	public static ADelegate Delegate2 (bool ok)
	{
		return ok ? Delegate2 : (ADelegate) null;
	}

	public static void Main ()
	{
	}
}