mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
17 lines
284 B
Solidity
17 lines
284 B
Solidity
contract C {
|
|
uint16 x;
|
|
bytes1 y;
|
|
uint16 z;
|
|
function f(uint8 a) public returns (uint _x) {
|
|
x = a;
|
|
y = bytes1(uint8(x) + 1);
|
|
z = uint8(y) + 1;
|
|
x = z + 1;
|
|
_x = x;
|
|
}
|
|
}
|
|
// ====
|
|
// compileToEwasm: also
|
|
// ----
|
|
// f(uint8): 6 -> 9
|