solidity/test/libsolidity/smtCheckerTests/types/bool_simple_3.sol
2018-11-22 13:33:28 +00:00

8 lines
155 B
Solidity

pragma experimental SMTChecker;
contract C {
function f(bool x, bool y) public pure {
bool z = x || y;
assert(!(x && y) || z);
}
}