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

17 lines
352 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(0);
assert(x > 0);
}
}
2021-03-31 15:11:54 +00:00
// ====
// SMTEngine: all
// ----
2021-03-31 15:11:54 +00:00
// Warning 6328: (129-142): CHC: Assertion violation happens here.\nCounterexample:\n\nx = 0\n\nTransaction trace:\nC.constructor()\nC.g()\n C.h(0) -- internal call