solidity/test/libsolidity/semanticTests/extracted/decayed_tuple.sol
2020-03-18 11:56:43 -05:00

11 lines
144 B
Solidity

contract C {
function f() public returns (uint256) {
uint256 x = 1;
(x) = 2;
return x;
}
}
// ----
// f() -> 2