Merge pull request #439 from mono-soc-2012/garyb/iconfix
[mono.git] / mcs / tests / test-848.cs
1 using System;
2
3 public class A<T>
4 {
5 }
6
7 class Program
8 {
9         public static void Foo<TEventArgs, TEventHandler> (A<TEventHandler> info, Action<object, TEventArgs> action)
10         {
11         }
12
13         static void Main ()
14         {
15                 A<string> pp = null;
16                 Foo (pp, (object s, string e) => { });
17         }
18 }