mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
14 lines
311 B
Solidity
14 lines
311 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 {}
|
||
|
}
|
||
|
// ----
|
||
|
// creation: 129 + 81800 = 81929
|
||
|
// external:
|
||
|
// fallback: 118
|
||
|
// a(): 383
|
||
|
// b(uint256): 802
|
||
|
// f1(uint256): 40663
|