solidity/test/libsolidity/ASTJSON/assembly/slot_offset.sol
2023-05-11 10:56:55 -05:00

9 lines
157 B
Solidity

contract C {
struct S { uint x; }
S s;
function e() pure public {
assembly { let x := s.offset let y := mul(s.slot, 2) }
}
}
// ----