solidity/test/libsolidity/smtCheckerTests/inline_assembly/assembly_6.sol

26 lines
578 B
Solidity
Raw Normal View History

pragma experimental SMTChecker;
contract C {
struct S {
uint x;
}
S s;
function f() public {
s.x = 42;
S storage sm = s;
assert(sm.x == 42); // should hold
uint256 i = 7;
assembly {
sstore(sm.slot, i)
}
sm.x = 10;
assert(sm.x == 10); // should hold
assert(i == 7); // should hold, not changed by the assembly
}
}
// ----
// Warning 7737: (190-226): Inline assembly may cause SMTChecker to produce spurious warnings (false positives).
// Warning 7737: (190-226): Inline assembly may cause SMTChecker to produce spurious warnings (false positives).