966bba02bb
Former-commit-id: bb0468d0f257ff100aa895eb5fe583fb5dfbf900
17 lines
292 B
C#
17 lines
292 B
C#
// 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);
|
|
}
|
|
} |