aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/smtCheckerTests/simple_assert_with_require.sol
blob: b66ae2457533509186b280ebfe9dfa91b5a66764 (plain) (blame)
1
2
3
4
pragma experimental SMTChecker;
contract C {
    function f(uint a) public pure { require(a < 10); assert(a < 20); }
}