solidity/test/libsolidity/smtCheckerTests/functions/functions_identity_as_tuple_fail.sol
2021-03-30 17:55:21 +02:00

16 lines
360 B
Solidity

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);
}
}
// ----
// 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