mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
20 lines
398 B
Solidity
20 lines
398 B
Solidity
contract C {
|
|
function f() public pure returns (bool correct) {
|
|
uint8[] memory m = new uint8[](1);
|
|
assembly {
|
|
mstore(add(m, 32), 258)
|
|
}
|
|
uint8 x = m[0];
|
|
uint r;
|
|
assembly {
|
|
r := x
|
|
}
|
|
correct = (m[0] == 0x02) && (r == 0x02);
|
|
}
|
|
}
|
|
// ====
|
|
// compileToEwasm: also
|
|
// compileViaYul: true
|
|
// ----
|
|
// f() -> true
|