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

16 lines
253 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);
}
}
// ----
2020-07-13 18:48:00 +00:00
// Warning 6328: (163-176): Assertion violation happens here