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

gtest-645.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5ed87bacabf1039cb9b7c00efe07f533862a8f1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Compiler options: -r:gtest-645-lib.dll

using System;
using SeparateAssembly;

class Program
{
	public static void Main()
	{
	}

	public static void AddChildButton<T1, T2>(IGenericAction<T1, T2> action)
	{
		IGenericAction<T2, T1> childAction = null;
		action.AddAction (childAction);
	}
}