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

9 lines
185 B
Solidity

pragma experimental SMTChecker;
contract C {
function f(bool x, bool y) public pure {
assert(x == y);
}
}
// ----
// Warning: (98-112): Assertion violation happens here