mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
15 lines
193 B
Solidity
15 lines
193 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);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// ----
|