solidity/test/cmdlineTests/model_checker_invariants_wrong/input.sol

8 lines
134 B
Solidity
Raw Normal View History

2021-10-06 09:53:14 +00:00
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.0;
contract test {
uint x;
function g() public view {
assert(x < 10);
}
}