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

gtest-406.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0d7f6089d7ee2a63f2fb6fa6a9eb31de4ca6d1c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
using System;
using System.Collections.Generic;

class Test<T>
{
	public void Foo <TOutput> (Func <T, TOutput> converter)
	{
	}
}

public class C<A, B>
{
	public C (IEnumerable<B> t)
	{
		new Test<B> ().Foo (a => a);
	}
}

class M
{
	public static void Main ()
	{
	}
}