mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
12 lines
319 B
Solidity
12 lines
319 B
Solidity
|
contract test {
|
||
|
function run(uint x1, uint x2, uint x3) public returns(uint y) {
|
||
|
uint8 a = 0x1; uint8 b = 0x10; uint16 c = 0x100;
|
||
|
y = a + b + c + x1 + x2 + x3;
|
||
|
y += b + x2;
|
||
|
}
|
||
|
}
|
||
|
// ====
|
||
|
// compileViaYul: also
|
||
|
// ----
|
||
|
// run(uint256,uint256,uint256): 0x1000, 0x10000, 0x100000 -> 0x121121
|