solidity/test/libsolidity/smtCheckerTests/types/tuple_assignment_compound.sol
2019-05-02 12:05:21 +02:00

14 lines
207 B
Solidity

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