Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-848.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: caf7062ca7cfa01273026f80c2e187a0f9ed47a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using System;

public class A<T>
{
}

class Program
{
	public static void Foo<TEventArgs, TEventHandler> (A<TEventHandler> info, Action<object, TEventArgs> action)
	{
	}

	public static void Main ()
	{
		A<string> pp = null;
		Foo (pp, (object s, string e) => { });
	}
}