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

16 lines
360 B
Solidity
Raw Normal View History

pragma experimental SMTChecker;
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-01-21 18:04:34 +00:00
// Warning 6328: (163-176): CHC: Assertion violation happens here.\nCounterexample:\n\nx = 0\n\nTransaction trace:\nC.constructor()\nC.g()\n C.h(0) -- internal call