aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/smtCheckerTestsJSON/simple.sol
blob: 6bc7193db672d03f3f8d746c9264b1bf45b346f4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
pragma experimental SMTChecker;

contract C
{
    function f(uint x) public pure {
        assert(x > 0);
    }
}
// ----
// Warning: (82-95): Assertion violation happens here