solidity/test/libsolidity/gasTests/dispatch_small.sol

17 lines
365 B
Solidity
Raw Normal View History

contract Small {
uint public a;
uint[] public b;
function f1(uint x) public returns (uint) { a = x; b[uint8(msg.data[0])] = x; }
function () external payable {}
}
// ----
// creation:
2019-09-06 17:11:07 +00:00
// codeDepositCost: 83800
// executionCost: 135
2019-09-06 17:11:07 +00:00
// totalCost: 83935
// external:
// fallback: 118
// a(): 383
// b(uint256): 802
// f1(uint256): 40663