solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/compoundAssignment/incomp_types.sol
2019-02-11 11:23:56 +01:00

8 lines
205 B
Solidity

contract C {
function f() public returns (uint a, uint b) {
a += (1, 1);
}
}
// ----
// TypeError: (72-83): Operator += not compatible with types uint256 and tuple(int_const 1,int_const 1)