solidity/test/libsolidity/semanticTests/various/swap_in_storage_overwrite.sol

41 lines
700 B
Solidity
Raw Normal View History

// This tests a swap in storage which does not work as one
// might expect because we do not have temporary storage.
// (x, y) = (y, x) is the same as
// y = x;
// x = y;
contract c {
struct S {
uint256 a;
uint256 b;
}
S public x;
S public y;
function set() public {
x.a = 1;
x.b = 2;
y.a = 3;
y.b = 4;
}
function swap() public {
(x, y) = (y, x);
}
}
// ====
// compileToEwasm: also
2021-02-12 12:45:15 +00:00
// compileViaYul: also
// ----
// x() -> 0, 0
// y() -> 0, 0
// set() ->
// gas irOptimized: 101354
2021-02-12 12:45:15 +00:00
// gas legacy: 101332
// gas legacyOptimized: 101282
// x() -> 1, 2
// y() -> 3, 4
// swap() ->
// x() -> 1, 2
// y() -> 1, 2