Update errors
[mono.git] / mcs / errors / bug1.cs
1 //
2 // FIXED
3 //
4 interface A {
5         void B ();
6 }
7
8 interface X {
9         void B ();
10 }
11
12
13 class B : A, X {
14         void X.B () {}
15         void A.B () {}
16         
17 }