solidity/test/libsolidity/smtCheckerTests/functions/this_external_call_return.sol
2020-07-23 18:49:03 +02:00

19 lines
355 B
Solidity

pragma experimental SMTChecker;
contract C
{
uint x;
function f(uint y) public returns (uint) {
x = y;
return x;
}
function g(uint y) public {
require(y < 1000);
uint z = this.f(y);
// Fails as false positive because CHC does not support `this`.
assert(z < 1000);
}
}
// ----
// Warning 6328: (263-279): Assertion violation happens here