mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
16 lines
313 B
Solidity
16 lines
313 B
Solidity
contract C {
|
|
function test() public returns (uint256, uint256) {
|
|
uint32 a = 0xffffffff;
|
|
uint16 x = uint16(a);
|
|
uint16 y = x;
|
|
x /= 0x100;
|
|
y = y / 0x100;
|
|
return (x, y);
|
|
}
|
|
}
|
|
// ====
|
|
// compileViaYul: also
|
|
// compileToEwasm: also
|
|
// ----
|
|
// test() -> 0xff, 0xff
|