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

20 lines
325 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(0);
assert(x > 0);
}
}
// ----
// Warning 6328: (229-242): CHC: Assertion violation happens here.