aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/smtCheckerTests/021_bool_simple.sol
blob: 5c166c022454aee2103c86c6a0c6a96629344be1 (plain) (blame)
1
2
3
4
5
6
7
8
pragma experimental SMTChecker;
contract C {
    function f(bool x, bool y) public pure {
        assert(x == y);
    }
}
// ----
// Warning: (98-112): Assertion violation happens here