Another dist build fix for rx integration, move *.cs file to safe-ish path.
[mono-project.git] / mcs / tests / test-848.cs
blobc7964c5bf55a31689912e7b9d6edd86d81bbd113
1 using System;
3 public class A<T>
7 class Program
9 public static void Foo<TEventArgs, TEventHandler> (A<TEventHandler> info, Action<object, TEventArgs> action)
13 static void Main ()
15 A<string> pp = null;
16 Foo (pp, (object s, string e) => { });