bug1.cs 127 B

1234567891011121314151617
  1. //
  2. // FIXED
  3. //
  4. interface A {
  5. void B ();
  6. }
  7. interface X {
  8. void B ();
  9. }
  10. class B : A, X {
  11. void X.B () {}
  12. void A.B () {}
  13. }