Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / gtest-645.cs
1 // Compiler options: -r:gtest-645-lib.dll
2
3 using System;
4 using SeparateAssembly;
5
6 class Program
7 {
8         public static void Main()
9         {
10         }
11
12         public static void AddChildButton<T1, T2>(IGenericAction<T1, T2> action)
13         {
14                 IGenericAction<T2, T1> childAction = null;
15                 action.AddAction (childAction);
16         }
17 }