contract_inheritance.sol 216 B

12345678910111213141516171819
  1. contract a is b, c {
  2. constructor() {}
  3. }
  4. contract b {
  5. int256 foo;
  6. function func2() public {}
  7. constructor() {}
  8. }
  9. contract c {
  10. int256 bar;
  11. constructor() {}
  12. function func1() public {}
  13. }