github.com/tri-stone/burrow@v0.25.0/tests/jobs_fixtures/app24-multiple_inheritance_and_intermingling_contracts/three.sol (about)

     1  pragma solidity >=0.0.0;
     2  
     3  import "./two.sol";
     4  
     5  contract three is two {
     6  
     7    function iii() public pure returns (uint /* id */) {
     8      return 3;
     9    }
    10  
    11  }