solidity/test/libsolidity/smtCheckerTests/functions/functions_identity_as_tuple_fail.sol
2020-09-09 16:14:21 +02:00

16 lines
254 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): Assertion violation happens here.