solidity/test/libsolidity/gasTests/dispatch_small.sol
Alex Beregszaszi 0b6f87ef3c Update tests
2021-05-31 10:43:18 +01:00

17 lines
376 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 {}
}
// ----
// creation:
// codeDepositCost: 119400
// executionCost: 172
// totalCost: 119572
// external:
// fallback: 129
// a(): 2402
// b(uint256): infinite
// f1(uint256): infinite