solidity/test/libsolidity/gasTests/dispatch_small_optimised.sol
Alex Beregszaszi 47167a42a7 Update tests
2021-05-27 18:31:54 +01:00

20 lines
413 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; }
fallback () external payable {}
}
// ====
// optimize: true
// optimize-runs: 2
// ----
// creation:
// codeDepositCost: 60800
// executionCost: 111
// totalCost: 60911
// external:
// fallback: 118
// a(): 2261
// b(uint256): 4585
// f1(uint256): 46720