Merge pull request #4418 from kumpera/fix_gclass_recording_on_failure
[mono.git] / mcs / tests / gtest-645-lib.cs
1 // Compiler options: -target:library
2
3 namespace SeparateAssembly
4 {
5         public interface IGenericAction<T1, T2>
6         {
7                 void AddAction(IGenericAction<T1, T2> action);
8                 void AddAction(IGenericAction<T2, T1> action);
9         }
10 }