mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
14 lines
183 B
Solidity
14 lines
183 B
Solidity
pragma experimental SMTChecker;
|
|
contract C
|
|
{
|
|
function h(uint x) public pure returns (uint) {
|
|
return x;
|
|
}
|
|
function g() public pure {
|
|
uint x;
|
|
x = h(42);
|
|
assert(x > 0);
|
|
}
|
|
}
|
|
|