solidity/test/libsolidity/smtCheckerTests/types/tuple_1_chain_1.sol
2020-07-23 13:46:41 +02:00

11 lines
200 B
Solidity

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.