solidity/test/cmdlineTests/model_checker_engine_none/input.sol
2021-04-08 21:03:39 +02:00

8 lines
203 B
Solidity

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