ethers-rs/ethers-solc/test-data/model-checker-sample/Assert.sol

6 lines
74 B
Solidity

contract Assert {
function f(uint x) public pure {
assert(x > 0);
}
}