solidity/test/cmdlineTests/model_checker_engine_none/input.sol

9 lines
235 B
Solidity
Raw Normal View History

// Removed to yield a warning, otherwise CI test fails with the expectation
// "no output requested"
//pragma solidity >=0.0;
pragma experimental SMTChecker;
contract test {
function f(uint x) public pure {
assert(x > 0);
}
}