solidity/test/cmdlineTests/model_checker_solvers_wrong2/input.sol

7 lines
130 B
Solidity
Raw Normal View History

2021-05-19 15:35:19 +00:00
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.0;
contract test {
function f(uint x) public pure {
assert(x > 0);
}
}