multiple-inheritance2.azsl 130 B

123456789
  1. interface interf1 { void f(); };
  2. interface interf2 { void f2(); };
  3. class s : interf1, interf2
  4. {
  5. void f();
  6. void f2();
  7. };