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

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

public class Tests {

	public delegate void CallTargetWithContextN (object o, params object[] args);

	public static void CallWithContextN (object o, object[] args) {
	}

	public static void Main () {
		object o = new CallTargetWithContextN (CallWithContextN);
	}
}