fork download
  1. using System;
  2.  
  3. interface I
  4. {
  5. void foo();
  6. }
  7.  
  8. class A
  9. {
  10. public void foo() {}
  11. }
  12.  
  13. class B : A, I
  14. {
  15.  
  16. }
  17.  
  18. public class Test
  19. {
  20. public static void Main()
  21. {
  22. // your code goes here
  23. }
  24. }
Success #stdin #stdout 0.01s 23984KB
stdin
Standard input is empty
stdout
Standard output is empty