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