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

11 lines
200 B
Solidity
Raw Normal View History

2020-07-15 16:56:28 +00:00
pragma experimental SMTChecker;
contract C {
function i() public pure returns (uint d) {
if (0==0)
(d) = 13;
assert(d == 13);
}
}
// ----
// Warning 6838: (96-100): Condition is always true.