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

bug1.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 934f0f9bce21f853f054a4396ec86bc362df9f21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//
// FIXED
//
interface A {
	void B ();
}

interface X {
	void B ();
}


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