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

gtest-619.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 63bc79c5958826d7de8330498ea91276efce54c7 (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
25
26
27
28
29
30
31
32
33
34
35
interface I<T>
{
}

interface IB<T> : I<string>
{
	
}

struct S
{
	class P
	{
	}
	
	public class C : IB<P>
	{
	}
}

class M
{
	static void Test<T> (I<T> iface)
	{
	}

	static void Test<T> (IB<T> iface)
	{
	}

	static void Main ()
	{
		Test (new S.C ());
	}
}