mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
17 lines
357 B
Solidity
17 lines
357 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: 111 + 63600 = 63711
|
||
|
// external:
|
||
|
// fallback: 118
|
||
|
// a(): 376
|
||
|
// b(uint256): 753
|
||
|
// f1(uint256): 40600
|