solidity/test/libsolidity/smtCheckerTests/types/tuple_assignment_compound.sol

14 lines
212 B
Solidity
Raw Normal View History

pragma experimental SMTChecker;
contract C
{
function f() public pure {
uint a = 1;
uint b = 3;
a += ((((b))));
assert(a == 3);
}
}
// ----
2020-07-13 18:48:00 +00:00
// Warning 6328: (122-136): Assertion violation happens here