mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
25 lines
446 B
Solidity
25 lines
446 B
Solidity
contract C {
|
|
uint16 x;
|
|
uint16 public y;
|
|
uint256 public z;
|
|
|
|
function f() public returns (bool) {
|
|
uint256 off1;
|
|
uint256 off2;
|
|
assembly {
|
|
sstore(z.slot, 7)
|
|
off1 := z.offset
|
|
off2 := y.offset
|
|
}
|
|
assert(off1 == 0);
|
|
assert(off2 == 2);
|
|
return true;
|
|
}
|
|
}
|
|
// ====
|
|
// compileToEwasm: also
|
|
// compileViaYul: also
|
|
// ----
|
|
// f() -> true
|
|
// z() -> 7
|