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

test-627.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 62f367ae3cce747bef8a25c43956220d78873384 (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
using System;

interface A {
	void B ();
}

interface X {
	void B ();
}


class B : A, X {
	void X.B () {}
	void A.B () {}
	
}

namespace N {
	interface B {
	}
}

class M {
	static void N (object N)
	{
		object x = (N.B) N;
	}

	public static void Main ()
	{
	}
}