solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/249_tuple_compound_assignment.sol

8 lines
181 B
Solidity

contract C {
function f() public returns (uint a, uint b) {
(a, b) += (1, 1);
}
}
// ----
// TypeError: (72-88): Compound assignment is not allowed for tuple types.