aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/smtCheckerTests/bool_simple_5.sol
blob: 4cecebbc7fefb72470a3c76d3b107c77f0d69c53 (plain) (blame)
1
2
3
4
5
6
7
pragma experimental SMTChecker;
contract C {
    function f(bool x) public pure {
        bool y = x;
        assert(x == y);
    }
}