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

test-218.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 816728fe54cc0621634b0fc79b0dfd73577606cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
class T
{
	public static void Main()
	{}
        delegate void foo (object o);

	static foo[] f = { new foo(T.compareQueryQuery1) };
	
	static void compareQueryQuery1(object o) {}
};