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

gtest-129.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2f2545eec6ac43a59dd47250dc938d52cb4bc192 (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
namespace B
{
	using C;

	partial class Test <T>
		where T : IA, IB
	{ }
}

namespace B
{
	partial class Test <T>
		where T : C.IB, C.IA
	{ }
}

namespace B
{
	partial class Test <T>
	{ }
}

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

namespace C {
	interface IA { }
	interface IB { }
}