mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
16 lines
356 B
Solidity
16 lines
356 B
Solidity
contract C {
|
|
uint256 x;
|
|
uint256 y;
|
|
function set(uint256 v) public returns (uint256) { x = v; return v; }
|
|
function f() public returns (uint256, uint256) {
|
|
(y, y, y) = (set(1), set(2), set(3));
|
|
assert(y == 1 && x == 3);
|
|
return (x, y);
|
|
}
|
|
}
|
|
// ====
|
|
// compileViaYul: also
|
|
// compileToEwasm: also
|
|
// ----
|
|
// f() -> 3, 1
|