solidity/test/libsolidity/smtCheckerTests/functions/functions_identity_1_fail.sol
2021-04-08 21:03:39 +02:00

17 lines
352 B
Solidity

contract C
{
function h(uint x) public pure returns (uint) {
return x;
}
function g() public pure {
uint x;
x = h(0);
assert(x > 0);
}
}
// ====
// SMTEngine: all
// ----
// 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