mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
11 lines
219 B
Solidity
11 lines
219 B
Solidity
|
contract C {
|
||
|
bytes1 a;
|
||
|
|
||
|
function f(bytes32 x) public returns (uint256, uint256, uint256) {
|
||
|
return (x.length, bytes16(uint128(2)).length, a.length + 7);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// ----
|
||
|
// f(bytes32): "789" -> 32, 16, 8
|