solidity/test/libsolidity/gasTests/dispatch_small_optimised.sol
Daniel Kirchner 44da8507b1 Change default EVM version to Shanghai.
Co-authored-by: Rodrigo Q. Saramago <rodrigoqsaramago@gmail.com>
2023-05-08 16:34:23 +02: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: 58200
// executionCost: 109
// totalCost: 58309
// external:
// fallback: 117
// a(): 2259
// b(uint256): 4582
// f1(uint256): 46716