inherit_05.sol 382 B

123456789101112131415161718192021
  1. contract a is b {
  2. constructor(int arg1) public {
  3. }
  4. }
  5. contract b is c {
  6. constructor(int arg1) public {
  7. }
  8. }
  9. contract d {
  10. constructor(int arg1) public {
  11. }
  12. }
  13. contract c is d, a {
  14. constructor(int arg1) public {
  15. }
  16. }