mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
19 lines
391 B
Solidity
19 lines
391 B
Solidity
contract C {
|
|
function f() public pure returns (bool correct) {
|
|
uint256[1] memory m;
|
|
assembly {
|
|
mstore(m, 0xdeadbeef15dead)
|
|
}
|
|
uint32 x = uint32(m[0]);
|
|
uint r;
|
|
assembly {
|
|
r := x
|
|
}
|
|
correct = (r == 0xef15dead) && (m[0] == 0xdeadbeef15dead);
|
|
}
|
|
}
|
|
// ====
|
|
// compileViaYul: true
|
|
// ----
|
|
// f() -> true
|