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

test-674.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 300efac7264689bdf407512629679beb527d41af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
using System;

public class Test
{
	delegate int D (int i);
	
	public static int Main ()
	{
		object o = (D) delegate { return 0; };
		((D)o)(1);
		return ((D)o)(1);
	}
}