github.com/Tri-stone/burrow@v0.25.0/tests/jobs_fixtures/app35-library_handling/multi-lib-consumer.sol (about) 1 pragma solidity >=0.0.0; 2 3 import "./multi-lib.sol"; 4 5 contract c { 6 intStructs.intStruct myIntStruct; 7 constructor() public { 8 myIntStruct = intStructs.intStruct(1, 2); 9 } 10 11 function basicFunctionReturn() public view returns (uint x, uint y) { 12 x = basicMath.add(myIntStruct.x, myIntStruct.y); 13 y = basicMath.subtract(myIntStruct.x, myIntStruct.y); 14 } 15 }