multiple-inheritance.azsl 140 B

123456789
  1. interface interf1 {};
  2. interface interf2 {};
  3. interface interf3 {};
  4. interface interf4 {};
  5. class s : interf1, interf2, interf3, interf4 {};