solidity/test/libsolidity/gasTests/dispatch_small_optimised.sol
2019-12-04 11:41:42 +01:00

20 lines
412 B
Solidity

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 {}
}
// ====
// optimize: true
// optimize-runs: 2
// ----
// creation:
// codeDepositCost: 60400
// executionCost: 111
// totalCost: 60511
// external:
// fallback: 118
// a(): 976
// b(uint256): 1953
// f1(uint256): 41188