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

gtest-323.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c7563ce00ad9b10f5feafcad0a1caed3731f9e09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
public class MyBase<K, V>
{
	public class Callback
	{ }

	public void Hello (Callback cb)
	{ }
}

public class X : MyBase<string, int>
{
	public X (Callback cb)
	{ }

	public void Test (Callback cb)
	{
		Hello (cb);
	}

	public static void Main ()
	{ }
}