solidity/test/libsolidity/smtCheckerTests/functions/this_external_call.sol
2021-04-08 21:03:39 +02:00

16 lines
185 B
Solidity

contract C
{
uint x;
function f(uint y) public {
x = y;
}
function g(uint y) public {
require(y < 1000);
this.f(y);
assert(x < 1000);
}
}
// ====
// SMTEngine: all
// ----