solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/compoundAssignment/tuple.sol

8 lines
186 B
Solidity
Raw Normal View History

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