solidity/test/libsolidity/smtCheckerTests/functions/functions_identity_1.sol

16 lines
185 B
Solidity
Raw Normal View History

contract C
{
function h(uint x) public pure returns (uint) {
return x;
}
function g() public pure {
uint x;
x = h(42);
assert(x > 0);
}
}
2021-03-31 15:11:54 +00:00
// ====
// SMTEngine: all
// ----