solidity/test/libsolidity/gasTests/dispatch_small.sol
2021-05-03 18:28:43 +02: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: 114600
// executionCost: 159
// totalCost: 114759
// external:
// fallback: 129
// a(): 1107
// b(uint256): infinite
// f1(uint256): infinite