solidity/test/libsolidity/smtCheckerTests/verification_target/simple_assert_with_require.sol
2021-04-20 17:38:29 +02:00

7 lines
121 B
Solidity

contract C {
function f(uint a) public pure { require(a < 10); assert(a < 20); }
}
// ====
// SMTEngine: all
// ----