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

8 lines
155 B
Solidity
Raw Normal View History

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